You are here

function drush_sms_twilio_post_enable in Twilio SMS Integration 7.2

Same name and namespace in other branches
  1. 7 drush/sms_twilio.drush.inc \drush_sms_twilio_post_enable()

Implements drush_MODULE_post_COMMAND().

File

drush/sms_twilio.drush.inc, line 46
Drush integration for the sms_twilio module.

Code

function drush_sms_twilio_post_enable() {
  $modules = func_get_args();
  if (in_array('sms_twilio', $modules)) {
    sms_twilio_drush_download();
  }
}