You are here

function cacheflush_combination_cacheflush_preset_presave_alter in CacheFlush 7.2

Implements hook_cacheflush_preset_presave_alter().

File

cacheflush_combination/cacheflush_combination.module, line 95
Cacheflush Cloner combination.

Code

function cacheflush_combination_cacheflush_preset_presave_alter(&$preset_list, $preset_id, $flag) {
  if ($flag == 'preset_status_update') {
    if (isset($preset_list['label'])) {
      unset($preset_list['label']);
    }
  }
}