You are here

function cache_actions_action_clear_cache_submit in Cache Actions 6

Submit handler for the cache clearing action.

Parameters

array $settings the settings:

$form the form:

$form_state the form state.:

File

./cache_actions.rules.inc, line 188
This file provides the rules integration for this module. @author Fabian Sörqvist <fabian.sorqvist@gmail.com>

Code

function cache_actions_action_clear_cache_submit(&$settings, $form, $form_state) {

  // The rules variable type is a string, so we just implode it.
  $settings['tables'] = implode(',', $settings['tables']);
}