You are here

function filedepot_drush_command in filedepot 7

Implements hook_drush_command().

File

./filedepot.drush.inc, line 16
Drush integration for filedepot.

Code

function filedepot_drush_command() {
  $items = array();

  // The key in the $items array is the name of the command.
  $items['filedepot-libraries'] = array(
    'description' => dt("Downloads the filedepot 3rd party javascript libraries."),
    'arguments' => array(
      'path' => dt('Optional. A path where to install the filedepot libraries. If omitted Drush will use the default location.'),
    ),
  );
  return $items;
}