You are here

function workbench_scheduler_drush_command in Workbench Scheduler 7

Same name and namespace in other branches
  1. 7.2 workbench_scheduler.drush.inc \workbench_scheduler_drush_command()

Implements hook_drush_command().

File

./workbench_scheduler.drush.inc, line 10
Drush utility commands for workbench_scheduler.

Code

function workbench_scheduler_drush_command() {
  $items['workbench-scheduler-run'] = array(
    'description' => 'Run workbench scheduler schedules.',
    'callback' => 'workbench_scheduler_drush_run',
    'aliases' => array(
      'wbs-run',
      'wbsr',
    ),
  );
  return $items;
}