You are here

function expire_rules_action_flush_url_form in Cache Expiration 6

Action clear page from cache configuration form.

File

./expire.rules.inc, line 102
Integration with the rules module

Code

function expire_rules_action_flush_url_form($settings, &$form) {
  $settings += array(
    'urls' => '',
  );
  $form['settings']['urls'] = array(
    '#type' => 'textarea',
    '#title' => t('URL(s)'),
    '#default_value' => $settings['urls'],
    '#description' => t('Full URL (including http://); node/8; taxonomy/term/3; user/5; path alias; & <front> will work. One Per line.'),
  );
}