You are here

function bakery_drush_command in Bakery Single Sign-On System 7.3

Same name and namespace in other branches
  1. 8.2 bakery.drush.inc \bakery_drush_command()
  2. 6.2 bakery.drush.inc \bakery_drush_command()
  3. 7.4 bakery.drush.inc \bakery_drush_command()
  4. 7.2 bakery.drush.inc \bakery_drush_command()

Implementation of hook_drush_command().

File

./bakery.drush.inc, line 21
Drush integration for Bakery.

Code

function bakery_drush_command() {
  $items['bakery-add-slave'] = array(
    'description' => 'Add a Bakery slave site.',
    'arguments' => array(
      'slave' => 'Slave site URL, starts with http and ending with /.',
    ),
  );
  return $items;
}