function bakery_drush_command in Bakery Single Sign-On System 7.2
Same name and namespace in other branches
- 8.2 bakery.drush.inc \bakery_drush_command()
- 6.2 bakery.drush.inc \bakery_drush_command()
- 7.4 bakery.drush.inc \bakery_drush_command()
- 7.3 bakery.drush.inc \bakery_drush_command()
Implements 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;
}