You are here

function simple_instagram_feed_drush_command in Simple Instagram Feed Block 7

Implements hook_drush_command().

File

drush/simple_instagram_feed.drush.inc, line 22
Drush integration: simple_instagram_feed.

Code

function simple_instagram_feed_drush_command() {
  $items = array();
  $items['simple_instagram_feed-plugin'] = array(
    'callback' => 'drush_simple_instagram_feed_plugin',
    'description' => dt('Download and install the simple_instagram_feed plugin.'),
    'bootstrap' => DRUSH_BOOTSTRAP_DRUSH,
    'arguments' => array(
      'path' => dt('Optional. A path where to install the simple_instagram_feed plugin. If omitted Drush will use the default location.'),
    ),
    'aliases' => array(
      'instagramfeedplugin',
    ),
  );
  return $items;
}