rave_alerts.drush.inc in RAVE Alerts 1.0.x
Same filename and directory in other branches
File
rave_alerts.drush.incView source
<?php
/**
* Implements hook_drush_cache_clear().
*/
function rave_alerts_drush_cache_clear(&$types) {
$types['rave_alerts'] = '_rave_alerts_cache_clear';
}
/**
* Utility function that clears all the entries in our cache bin.
*/
function _rave_alerts_cache_clear() {
cache_clear_all('*', 'cache_rave_alerts', true);
}
Functions
Name![]() |
Description |
---|---|
rave_alerts_drush_cache_clear | Implements hook_drush_cache_clear(). |
_rave_alerts_cache_clear | Utility function that clears all the entries in our cache bin. |