function superfish_drush_command in Superfish 6
Same name and namespace in other branches
- 7 superfish.drush.inc \superfish_drush_command()
Implementation of hook_drush_command().
In this hook, you specify which commands your drush module makes available, what it does and description.
Notice how this structure closely resembles how you define menu hooks.
See `drush topic docs-commands` for a list of recognized keys.
Return value
An associative array describing your command(s).
File
- ./
superfish.drush.inc, line 28 - Drush integration for Superfish.
Code
function superfish_drush_command() {
$items = array();
// the key in the $items array is the name of the command.
$items['superfish-plugin'] = array(
'callback' => 'drush_superfish_plugin',
'description' => dt("Downloads the Superfish plugin."),
'bootstrap' => DRUSH_BOOTSTRAP_DRUSH,
// No bootstrap.
'arguments' => array(
'path' => dt('Optional. A path where to install the Superfish plugin. If omitted Drush will use the default location.'),
),
'aliases' => array(
'superfishplugin',
),
);
return $items;
}