function simple_access_theme in Simple Access 7.2
Same name and namespace in other branches
- 6.2 simple_access.module \simple_access_theme()
Implements hook_theme().
File
- ./
simple_access.module, line 444 - This module allows administrators to make nodes viewable by specific 'access groups'. Each access group can contain any number of roles. If a node is not assigned to any access groups, it will remain viewable by all users.
Code
function simple_access_theme() {
return array(
'simple_access_form' => array(
'render element' => 'form',
'file' => 'simple_access.theme.inc',
),
'simple_access_page_overview_list' => array(
'render element' => 'form',
'file' => 'simple_access.theme.inc',
),
'simple_access_profile_list' => array(
'render element' => 'form',
'file' => 'simple_access.theme.inc',
),
);
}