You are here

function token_drush_cache_clear in Token 7

Same name and namespace in other branches
  1. 8 token.drush.inc \token_drush_cache_clear()

Implements hook_drush_cache_clear().

File

./token.drush.inc, line 11
Drush integration for the Token module.

Code

function token_drush_cache_clear(&$types) {
  if (function_exists('module_exists') && module_exists('token')) {
    $types['token'] = 'drush_token_cache_clear_token_info';
  }
}