You are here

function boost_drush_command in Boost 6

Implementation of hook_drush_command().

File

./boost.drush.inc, line 25
Drush commands for Boost.

Code

function boost_drush_command() {
  $items['boost-cache-clear-all'] = array(
    'callback' => 'boost_drush_cache_clear_all',
    'description' => dt('Clears all Boost cached data.'),
  );
  $items['boost-cache-clear-expired'] = array(
    'callback' => 'boost_drush_cache_clear_expired',
    'description' => dt('Clears Boost expired data.'),
  );
  $items['boost-reset'] = array(
    'callback' => 'boost_drush_cache_reset',
    'description' => dt("Clears Boost's database and file cache."),
  );
  return $items;
}