function domain_theme_theme in Domain Access 7.2
Same name and namespace in other branches
- 6.2 domain_theme/domain_theme.module \domain_theme_theme()
- 7.3 domain_theme/domain_theme.module \domain_theme_theme()
Implements hook_theme()
File
- domain_theme/
domain_theme.module, line 105 - Domain Theme module for the Domain Access module group.
Code
function domain_theme_theme() {
$themes = array(
'domain_theme_reset' => array(
'variables' => array(
'domain' => array(),
),
),
'domain_theme_form' => array(
'render element' => 'form',
'file' => 'domain_theme.admin.inc',
),
);
return $themes;
}