You are here

rave_alerts.drush.inc in RAVE Alerts 1.0.x

Same filename and directory in other branches
  1. 7 rave_alerts.drush.inc

File

rave_alerts.drush.inc
View 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

Namesort descending 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.