function environment_drush_help in Environment 7
Same name and namespace in other branches
- 8 environment.drush.inc \environment_drush_help()
- 6 environment.drush.inc \environment_drush_help()
Implements hook_drush_help().
File
- ./
environment.drush.inc, line 46 - Executes the environment_switch capabilities.
Code
function environment_drush_help($section) {
switch ($section) {
case 'meta:environment:title':
return dt('Environment commands');
case 'meta:environment:summary':
return dt('Review and control the site environment.');
case 'drush:environment':
return dt("Shows the current environment.");
case 'drush:environment-switch':
return dt("Switches the environment to the target environment.");
}
}