You are here

function boost_rules_action_info in Boost 6

Implementation of hook_rules_action_info().

File

./boost.rules.inc, line 13
Integration with the rules module

Code

function boost_rules_action_info() {
  return array(
    'boost_rules_action_clear_page' => array(
      'label' => t('Clear a page from the boost cache.'),
      'arguments' => array(
        'page' => array(
          'type' => 'string',
          'label' => t('URL of page to clear'),
        ),
      ),
      'module' => 'Boost',
    ),
  );
}