domain_settings_disallow()Helper function to disallow specific forms from the interface.
By design, the configuration for Domain Access itself is disallowed.
domain_settings/domain_settings.module, line 154
<?php
function domain_settings_disallow() {
static $forms;
if (!isset($forms)) {
$items = array();
$list = trim(variable_get('domain_settings_ignore', ''));
if (!empty($list)) {
$match = preg_replace('/(\r\n?|\n)/', '|', $list);
$items = explode("|", $match);
}
// These forms are known to be problematic, so omit them.
$default = array(
'domain_configure_form',
'system_file_system_settings', // Changing file paths is dangerous.
'system_performance_settings', // JS and CSS aggregation is not supported.
);
$forms = array_merge($default, $items);
}
return $forms;
}
?>