This repository has been archived on 2025-09-29. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
drupalcampbristol/2017/web/modules/contrib/token/token.drush.inc

20 lines
344 B
PHP

<?php
/**
* @file
* Drush integration for the Token module.
*/
/**
* Implements hook_drush_cache_clear().
*/
function token_drush_cache_clear(&$types) {
$types['token'] = 'drush_token_cache_clear_token_info';
}
/**
* Clear caches internal to Token module.
*/
function drush_token_cache_clear_token_info() {
token_clear_cache();
}