You are here

function statspro_drush_command in Statistics Pro 6

Same name and namespace in other branches
  1. 6.2 statspro.drush.inc \statspro_drush_command()

Implementation of hook_drush_command().

Return value

array

File

./statspro.drush.inc, line 25
Drush include file for statuspro

Code

function statspro_drush_command() {
  $items = array();
  $items['statspro'] = array(
    'callback' => 'statspro_drush_run',
    'description' => 'statspro drush commands',
  );
  return $items;
}