Calling all Drupal developers!
Help us get this on the first page of Digg. DIGG NOW!
Help us get this on the first page of Digg. DIGG NOW!
drush_drush_command()
contributions/drush/drush.module, line 54
Implementation of hook_drush_command().
<?php
function drush_drush_command() {
$items['help'] = array(
'callback' => 'drush_callback_help',
'description' => 'View help. Run "drush help [command]" to view command-specific help.'
);
return $items;
}
?>