You are here

function mongodb_drush_command in MongoDB 8

Same name and namespace in other branches
  1. 6 mongodb.drush.inc \mongodb_drush_command()
  2. 7 mongodb.drush.inc \mongodb_drush_command()

File

./mongodb.drush.inc, line 11
Contains

Code

function mongodb_drush_command() {
  $commands['mongodb_config_takeover'] = array(
    'description' => 'Add mongodb as the default config',
    'aliases' => array(
      'mongo-cto',
    ),
    'bootstrap' => DRUSH_BOOTSTRAP_DRUPAL_FULL,
    'arguments' => array(
      'source' => 'Source service name.',
      'target' => 'Target service name.',
    ),
  );
  return $commands;
}