domain_drush_help($section)Implement hook_drush_help().
./domain.drush.inc, line 25
<?php
function domain_drush_help($section) {
$items = domain_drush_command();
$name = str_replace('domain:', '', $section);
if (isset($items[$name])) {
return dt($items[$name]['description']);
}
}
?>