function taxonomy_entity_index_drush_command in Taxonomy Entity Index 7
Same name and namespace in other branches
- 8 taxonomy_entity_index.drush.inc \taxonomy_entity_index_drush_command()
Implementation of hook_drush_command().
@See drush_parse_command() for a list of recognized keys.
Return value
An associative array describing each command.
File
- ./
taxonomy_entity_index.drush.inc, line 15 - Clear all caches
Code
function taxonomy_entity_index_drush_command() {
$items = array();
$items['taxonomy-entity-index-rebuild'] = array(
'description' => "Rebuild taxonomy entity index",
'examples' => array(
'drush taxonomy-entity-index-rebuild',
),
'aliases' => array(
'tei-rebuild',
),
);
return $items;
}