function nodeaccess_theme in Nodeaccess 6
Same name and namespace in other branches
- 6.2 nodeaccess.module \nodeaccess_theme()
- 7 nodeaccess.module \nodeaccess_theme()
Implementation of hook_theme().
File
- ./
nodeaccess.module, line 102
Code
function nodeaccess_theme($existing = NULL, $type = NULL, $theme = NULL, $path = NULL) {
return array(
'nodeaccess_admin_form_roles' => array(
'arguments' => array(
'form',
),
),
'nodeaccess_admin_form_types' => array(
'arguments' => array(
'form',
),
),
'nodeaccess_grants_form' => array(
'arguments' => array(
'form',
),
),
);
}