function baguettebox_drush_command in baguetteBox.js 7
Implements hook_drush_command().
File
- ./
baguettebox.drush.inc, line 17 - Drush integration for BaguetteBox module.
Code
function baguettebox_drush_command() {
$items['baguettebox-download'] = array(
'description' => dt('Download and install baguetteBox library.'),
'bootstrap' => DRUSH_BOOTSTRAP_DRUSH,
'aliases' => array(
'bb-d',
),
);
return $items;
}