domain_theme_domainwarnings()Implement hook_domainwarnings()
domain_theme/domain_theme.module, line 260
<?php
function domain_theme_domainwarnings() {
$forms = array(
'system_themes_form',
'system_theme_settings',
);
$return = array();
foreach ($forms as $form) {
$return[$form] = 'admin/build/domain/theme/%domain_id';
}
return $return;
}
?>