You are here

function hook_domainwarnings in Domain Access 5

Same name and namespace in other branches
  1. 6.2 API.php \hook_domainwarnings()
  2. 7.2 domain.api.php \hook_domainwarnings()

Allows a warning message to be printed when entering specific forms that may have values that vary on each domain.

Return value

An array of form_id values representing forms that require warnings.

Related topics

2 functions implement hook_domainwarnings()

Note: this list is generated by pattern matching, so it may include some functions that are not actually implementations of this hook.

domain_conf_domainwarnings in domain_conf/domain_conf.module
Implement hook_domainwarnings()
domain_theme_domainwarnings in domain_theme/domain_theme.module
Implement hook_domainwarnings()
1 invocation of hook_domainwarnings()
domain_warning_check in ./domain.module
Sets a message to the site admin.

File

./API.php, line 319
API documentation file.

Code

function hook_domainwarnings() {

  // These are the forms for variables set by Domain Conf.
  return array(
    'system_admin_theme_settings',
    'system_date_time_settings',
    'system_site_information_settings',
    'system_site_maintenance_settings',
  );
}