Further modules included.
[yaffs-website] / web / modules / contrib / token / token.drush.inc
1 <?php
2
3 /**
4  * @file
5  * Drush integration for the Token module.
6  */
7
8 /**
9  * Implements hook_drush_cache_clear().
10  */
11 function token_drush_cache_clear(&$types) {
12   $types['token'] = 'drush_token_cache_clear_token_info';
13 }
14
15 /**
16  * Clear caches internal to Token module.
17  */
18 function drush_token_cache_clear_token_info() {
19   token_clear_cache();
20 }