function taxonomy_access_theme in Taxonomy Access Control 7
Same name and namespace in other branches
- 6 taxonomy_access.module \taxonomy_access_theme()
Implements hook_theme().
File
- ./
taxonomy_access.module, line 91 - Allows administrators to specify access control for taxonomy categories.
Code
function taxonomy_access_theme() {
return array(
'taxonomy_access_admin_form' => array(
'render element' => 'form',
'file' => 'taxonomy_access.admin.inc',
),
'taxonomy_access_grant_table' => array(
'render element' => 'elements',
'file' => 'taxonomy_access.admin.inc',
),
);
}