function warden_drush_command in Warden 8
Same name and namespace in other branches
- 8.2 warden.drush.inc \warden_drush_command()
- 6 warden.drush.inc \warden_drush_command()
- 7 warden.drush.inc \warden_drush_command()
- 3.x warden.drush.inc \warden_drush_command()
Implements of hook_drush_command().
File
- ./
warden.drush.inc, line 13 - Drush integration with the Warden module.
Code
function warden_drush_command() {
$items = array();
$items['warden-check'] = array(
'description' => 'Test the connection to Warden by getting its public key',
);
$items['warden-update'] = array(
'description' => 'Update Warden with the lastest site data',
);
$items['warden-show-module-data'] = array(
'description' => 'Displays the module data that will be sent to Warden',
);
return $items;
}