You are here

function menu_minipanels_drush_command in Menu Minipanels 7

Same name and namespace in other branches
  1. 6 menu_minipanels.drush.inc \menu_minipanels_drush_command()

Implements hook_drush_command().

File

./menu_minipanels.drush.inc, line 10
Drush integration for Menu_MiniPanels.

Code

function menu_minipanels_drush_command() {
  $items = array();
  $items['download-qtip'] = array(
    'callback' => 'menu_minipanels_drush_download',
    'description' => dt('Downloads the required qTip JavaScript library from craigsworks.com.'),
    'arguments' => array(
      'path' => dt('Optional. A path to the download folder. If omitted Drush will use the default location (sites/all/libraries/qtip).'),
    ),
  );
  return $items;
}