You are here

function variable_realm_drush_help in Variable 7.2

Implements hook_drush_help().

File

variable_realm/variable_realm.drush.inc, line 52
Drush commands for Variable Realm.

Code

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