You are here

function metatags_quick_drush_command in Meta tags quick 7.2

Same name and namespace in other branches
  1. 8.3 metatags_quick.drush.inc \metatags_quick_drush_command()

Implementation of hook_drush_command().

File

./metatags_quick.drush.inc, line 22
metatags_quick.drush.inc Drush commands for metatags_quick.

Code

function metatags_quick_drush_command() {
  $items['metatags-quick-migrate'] = array(
    'description' => 'Migrate from nodewords to metatags-quick.',
    'arguments' => array(
      'name' => 'An optional list of og fields. If not specified, all available fields will be migrated.',
    ),
  );
  return $items;
}