function workbench_access_drush_help in Workbench Access 8
Same name and namespace in other branches
- 7 workbench_access.drush.inc \workbench_access_drush_help()
Implements hook_drush_help().
File
- ./
workbench_access.drush.inc, line 33 - Drush commands for Workbench Access.
Code
function workbench_access_drush_help($section) {
$items = workbench_access_drush_command();
$name = str_replace('workbench access:', '', $section);
if (isset($items[$name])) {
return dt($items[$name]['description']);
}
}