You are here

function domain_drush_help in Domain Access 8

Same name and namespace in other branches
  1. 6.2 domain.drush.inc \domain_drush_help()
  2. 7.3 domain.drush.inc \domain_drush_help()
  3. 7.2 domain.drush.inc \domain_drush_help()

Implements hook_drush_help().

File

domain/domain.drush.inc, line 162
Drush commands for Domain Access.

Code

function domain_drush_help($section) {
  $items = domain_drush_command();
  $name = str_replace('domain:', '', $section);
  if (isset($items[$name])) {
    return dt($items[$name]['description']);
  }
}