You are here

function revision_scheduler_drush_command in Revision scheduler 7

Implements hook_drush_command().

File

./revision_scheduler.drush.inc, line 11
Drush integration for the Revision Scheduler module.

Code

function revision_scheduler_drush_command() {
  $items = array();
  $items['revision-scheduler-process'] = array(
    'description' => 'Process all current revision scheduler items.',
    'callback' => 'drush_revision_scheduler_process',
    'bootstrap' => DRUSH_BOOTSTRAP_DRUPAL_FULL,
  );
  return $items;
}