display_cache.drush.inc in Display Cache 7
This file holds the logic for drush commands of the display cache module.
File
drush/display_cache.drush.incView source
<?php
/**
* @file
* This file holds the logic for drush commands of
* the display cache module.
*/
/**
* Implements hook_drush_cache_clear().
*/
function display_cache_drush_cache_clear(&$type) {
$type = $type + array(
'display-cache' => '_display_cache_clear_cache',
);
}
Functions
Name | Description |
---|---|
display_cache_drush_cache_clear | Implements hook_drush_cache_clear(). |