function strongarm_drush_command in Strongarm 7.2
Same name and namespace in other branches
- 6.2 strongarm.drush.inc \strongarm_drush_command()
- 6 strongarm.drush.inc \strongarm_drush_command()
Implementation of hook_drush_command().
File
- ./
strongarm.drush.inc, line 6
Code
function strongarm_drush_command() {
$items = array();
$items['strongarm-revert'] = array(
'description' => 'Revert all strongarmed variables from code to the database.',
'options' => array(
'force' => 'Reset all variables, including those that are marked as already being set to the database.',
),
'bootstrap' => 'DRUSH_BOOTSTRAP_DRUPAL_FULL',
);
return $items;
}