function statspro_drush_command in Statistics Pro 6.2
Same name and namespace in other branches
- 6 statspro.drush.inc \statspro_drush_command()
Implementation of hook_drush_command().
Return value
array
File
- ./
statspro.drush.inc, line 41 - 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;
}