You are here

function warden_drush_command in Warden 6

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. 7 warden.drush.inc \warden_drush_command()
  4. 3.x warden.drush.inc \warden_drush_command()

Implements of hook_drush_command().

File

./warden.drush.inc, line 11
Drush integration with the Warden module.

Code

function warden_drush_command() {
  $items = array();
  $items['warden-check-connection'] = array(
    'description' => 'Test the connection to Warden by getting its public key',
  );
  $items['warden-update'] = array(
    'description' => 'Update Warden with the lastest site data',
  );
  return $items;
}