function sms_twilio_drush_command in Twilio SMS Integration 7
Same name and namespace in other branches
- 7.2 drush/sms_twilio.drush.inc \sms_twilio_drush_command()
Implements hook_drush_command().
File
- drush/
sms_twilio.drush.inc, line 12 - Drush integration for the sms_twilio module.
Code
function sms_twilio_drush_command() {
$items['sms_twilio-download'] = array(
'callback' => 'sms_twilio_drush_download',
'description' => dt('Downloads the required twilio helper library from github.'),
'arguments' => array(
'path' => dt('Optional. A path to the download folder. If omitted Drush will use the default location (sites/all/libraries/twilio).'),
),
);
return $items;
}