You are here

function boost_drush_help in Boost 6

Implementation of hook_drush_help().

File

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

Code

function boost_drush_help($section) {
  switch ($section) {
    case 'drush:boost-cache-clear-all':
      return dt('Clears all Boost cached data.');
    case 'drush:boost-cache-clear-expired':
      return dt('Clears Boost expired data.');
    case 'drush:boost-reset':
      return dt("Clears Boost's database and file cache.");
  }
}