function token_flush_caches in Token 7
Implements hook_flush_caches().
File
- ./
token.module, line 479 - Enhances the token API in core: adds a browseable UI, missing tokens, etc.
Code
function token_flush_caches() {
if (db_table_exists('cache_token')) {
return array(
'cache_token',
);
}
}