function domain_conf_theme in Domain Access 6.2
Same name and namespace in other branches
- 7.3 domain_conf/domain_conf.module \domain_conf_theme()
- 7.2 domain_conf/domain_conf.module \domain_conf_theme()
Implement hook_theme()
File
- domain_conf/
domain_conf.module, line 103 - Domain manager configuration options.
Code
function domain_conf_theme() {
$themes = array(
'domain_conf_reset' => array(
'arguments' => array(
'domain' => array(),
),
),
);
return $themes;
}