Contributions API

Calling all Drupal developers!

Help us get this on the first page of Digg. DIGG NOW!

Modules in 6

drush_drush_command

Definition

drush_drush_command()
contributions/drush/drush.module, line 54

Description

Implementation of hook_drush_command().

Code

<?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;
}
?>