Mercurial > hg > rr-repo
view sites/all/modules/token/token.drush.inc @ 3:b28be78d8160
alpha1.0 version
author | danieleb <danielebarchiesi@me.com> |
---|---|
date | Thu, 19 Sep 2013 10:33:07 +0100 |
parents | ff03f76ab3fe |
children |
line wrap: on
line source
<?php /** * @file * Drush integration for the Token module. */ /** * Implements hook_drush_cache_clear(). */ function token_drush_cache_clear(&$types) { if (function_exists('module_exists') && module_exists('token')) { $types['token'] = 'drush_token_cache_clear_token_info'; } } /** * Clear caches internal to Token module. */ function drush_token_cache_clear_token_info() { token_clear_cache(); }