function config_perms_theme in Custom Permissions 7.2
Same name and namespace in other branches
- 6.2 config_perms.module \config_perms_theme()
Implements hook_theme();().
File
- ./
config_perms.module, line 89 - Allows additional permissions to be created and managed through a administration form
Code
function config_perms_theme() {
return array(
'config_perms_form' => array(
'render element' => 'form',
'file' => 'config_perms.admin.inc',
),
);
}