function clipboardjs_drush_command in Clipboard.js 2.0.x
Same name and namespace in other branches
- 8 clipboardjs.drush.inc \clipboardjs_drush_command()
- 7 clipboardjs.drush.inc \clipboardjs_drush_command()
Implements hook_drush_command().
File
- ./
clipboardjs.drush.inc, line 11 - Drush integration for the clipboard.js module.
Code
function clipboardjs_drush_command() {
$items = [];
$items['clipboard-download-library'] = [
'description' => dt('Download and install clipboard.js library.'),
'aliases' => [
'cbdl',
],
'callback' => 'drush_clipboardjs_download_libraries',
];
return $items;
}