You are here

function hook_instance_settings_apply in Instance settings 7

Same name and namespace in other branches
  1. 7.2 instance_settings.api.php \hook_instance_settings_apply()

Provides logic that should be executed when instance settings are applied.

2 functions implement hook_instance_settings_apply()

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

drush_instance_settings_apply in includes/instance_settings.drush.inc
Applies settings.
instance_settings_instance_settings_apply in ./instance_settings.module
Implements hook_instance_settings_apply().
1 invocation of hook_instance_settings_apply()
instance_settings_apply in ./instance_settings.module
Applies instance settings.

File

./instance_settings.api.php, line 16
Hooks provided by Instance settings module.

Code

function hook_instance_settings_apply() {
  drupal_set_message(t('Instance settings applied. Please make sure you cleared a cache.'));
}