You are here

function searchindex_wipe_drush_command in Search Index Wipe 7

Same name and namespace in other branches
  1. 8 searchindex_wipe.drush.inc \searchindex_wipe_drush_command()

Implements hook_drush_command().

File

./searchindex_wipe.drush.inc, line 23
Drush related functions.

Code

function searchindex_wipe_drush_command() {
  $items['searchindex-wipe'] = array(
    'description' => 'Wipes the search index',
    'aliases' => array(
      'siw',
    ),
    'examples' => array(
      'drush siw' => 'Wipes search index.',
    ),
  );
  return $items;
}