function domain_theme_domainwarnings in Domain Access 7.2
Same name and namespace in other branches
- 5 domain_theme/domain_theme.module \domain_theme_domainwarnings()
- 6.2 domain_theme/domain_theme.module \domain_theme_domainwarnings()
Implements hook_domainwarnings()
File
- domain_theme/
domain_theme.module, line 299 - Domain Theme module for the Domain Access module group.
Code
function domain_theme_domainwarnings() {
$forms = array(
'system_themes_form',
'system_theme_settings',
);
$return = array();
foreach ($forms as $form) {
$return[$form] = 'admin/structure/domain/theme/%domain_id';
}
return $return;
}