function environment_drush_help in Environment 8
Same name and namespace in other branches
- 6 environment.drush.inc \environment_drush_help()
- 7 environment.drush.inc \environment_drush_help()
Implements hook_drush_help().
File
- ./
environment.drush.inc, line 49 - 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.");
}
}