You are here

function hosting_queued_drush_command in Hosting 6.2

Same name and namespace in other branches
  1. 7.4 queued/hosting_queued.drush.inc \hosting_queued_drush_command()
  2. 7.3 queued/hosting_queued.drush.inc \hosting_queued_drush_command()

Implementation of hook_drush_command().

File

queued/hosting_queued.drush.inc, line 17
Dispatcher daemon

Code

function hosting_queued_drush_command() {
  $items = array();
  $items['hosting-queued'] = array(
    'description' => 'Runs the tasks queue',
    'bootstrap' => DRUSH_BOOTSTRAP_DRUPAL_FULL,
    'drupal dependencies' => array(
      'hosting_queued',
    ),
  );
  return $items;
}