function gelf_drush_command in GELF 8
Same name and namespace in other branches
- 6 gelf.drush.inc \gelf_drush_command()
- 7 gelf.drush.inc \gelf_drush_command()
Implements hook_drush_command().
File
- ./
gelf.drush.inc, line 11 - Drush integration for the gelf module.
Code
function gelf_drush_command() {
$items['gelf-download'] = array(
'description' => dt('Downloads the GELF library from https://github.com/bzikarsky/gelf-php.git.'),
'arguments' => array(
'path' => dt('Optional. A path to the download folder. If omitted Drush will use the sites/all/libraries/gelf-php.'),
),
'aliases' => array(
'gelfd',
),
);
return $items;
}