function advuser_theme in Advanced User 6.2
Same name and namespace in other branches
- 6.3 advuser.module \advuser_theme()
hook_theme implementation
File
- ./
advuser.module, line 192 - Advanced user module allows you to select users based on an advanced set of filtering and apply actions to block, unblock, delete or email the selected users.
Code
function advuser_theme() {
return array(
'advuser_admin_account' => array(
'arguments' => array(
'form' => NULL,
),
),
'advuser_filters' => array(
'arguments' => array(
'form' => NULL,
),
),
);
}