You are here

function warden_drush_command in Warden 3.x

Same name and namespace in other branches
  1. 8.2 warden.drush.inc \warden_drush_command()
  2. 8 warden.drush.inc \warden_drush_command()
  3. 6 warden.drush.inc \warden_drush_command()
  4. 7 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;
}