function nodeaccess_theme in Nodeaccess 7
Same name and namespace in other branches
- 6.2 nodeaccess.module \nodeaccess_theme()
- 6 nodeaccess.module \nodeaccess_theme()
Implements hook_theme().
Parameters
$existing:
$type:
$theme:
$path:
Return value
array
File
- ./
nodeaccess.module, line 185 - Provide per node access control
Code
function nodeaccess_theme($existing, $type, $theme, $path) {
return array(
'nodeaccess_admin_form_roles' => array(
'render element' => 'form',
),
'nodeaccess_admin_form_types' => array(
'render element' => 'form',
),
'nodeaccess_grants_form' => array(
'render element' => 'form',
),
);
}