function bakery_drush_command in Bakery Single Sign-On System 8.2
Same name and namespace in other branches
- 6.2 bakery.drush.inc \bakery_drush_command()
- 7.4 bakery.drush.inc \bakery_drush_command()
- 7.2 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'] = [
'description' => 'Add a Bakery slave site.',
'arguments' => [
'slave' => 'Slave site URL, starts with http and ending with /.',
],
];
return $items;
}