You are here

function cronkeychange_drush_command in Cron key change 7

Implements hook_drush_command().

File

./cronkeychange.drush.inc, line 11
Cron Key Change - Drush support.

Code

function cronkeychange_drush_command() {
  $commands = array();
  $commands['cronkeychange'] = array(
    'bootstrap' => DRUPAL_BOOTSTRAP_VARIABLES,
    'description' => dt('Generate new cron key.'),
    'callback' => 'drush_cronkeychange',
    'core' => array(
      '7',
    ),
  );
  return $commands;
}