You are here

function stage_file_proxy_drush_command in Stage File Proxy 7

Same name and namespace in other branches
  1. 8 stage_file_proxy.drush8.inc \stage_file_proxy_drush_command()

Implements hook_drush_command().

File

./stage_file_proxy.drush.inc, line 10
Contains drush commands.

Code

function stage_file_proxy_drush_command() {
  $items = array();
  $items['stage-file-proxy-dl'] = array(
    'description' => 'Download all managed files from the origin.',
  );
  return $items;
}