You are here

function workbench_access_drush_help in Workbench Access 7

Same name and namespace in other branches
  1. 8 workbench_access.drush.inc \workbench_access_drush_help()

Implement hook_drush_help().

File

./workbench_access.drush.inc, line 25
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']);
  }
}