__filters__ manual page
Posted: Wed Jun 18, 2008 2:20 am
Hi Steve,
Could you give me the URL of the __filters__ manual page ?
Thank you
Jean
Could you give me the URL of the __filters__ manual page ?
Thank you
Jean
[__filters__]
group_id=10
<?php
class tables_users {
function init(&$table){
$table->setSecurityFilter(array('group_id'=>10));
}
}
<?php
class tables_users {
function init(&$table){
if ( !isAdmin() ){
$table->setSecurityFilter(array('group_id'=>10));
}
}
}
function init(&$table){
....
}