You are here

function twilio_uninstall in Twilio 7

Implements hook_install().

File

./twilio.install, line 20
Install and uninstall functions for the twilio module.

Code

function twilio_uninstall() {

  // Remove all the twilio variables.
  variable_del('twilio_account');
  variable_del('twilio_number');
  variable_del('twilio_path');
  variable_del('twilio_registration_form');
  variable_del('twilio_token');
  variable_del('twilio_area_codes');
}