function config_perms_theme in Custom Permissions 6.2
Same name and namespace in other branches
- 7.2 config_perms.module \config_perms_theme()
Implementation of hook_theme();.
File
- ./
config_perms.module, line 71 - Adds more granular permissions for items under 'administer site configuration'.
Code
function config_perms_theme() {
return array(
'config_perms_form' => array(
'arguments' => array(
'form' => NULL,
),
'file' => 'config_perms.admin.inc',
),
);
}