hook_domain_warnings_alter(&$forms)Allows modules to remove form_ids from the list set by hook_domainwarnings().
Required by Domain Settings, whose code is shown below.
&$forms An array of form_ids, passed by reference.
./API.php, line 753
<?php
function hook_domain_warnings_alter(&$forms) {
// Forms which Domain Settings handles and are set as warnings.
$core_forms = array(
'system_admin_theme_settings',
'system_site_information_settings',
'system_site_maintenance_settings',
'menu_configure',
);
foreach ($core_forms as $form_id) {
if (isset($forms[$form_id])) {
unset($forms[$form_id]);
}
}
}
?>