You are here

function sms_uninstall in SMS Framework 6.2

Same name and namespace in other branches
  1. 5 sms.install \sms_uninstall()
  2. 7 sms.install \sms_uninstall()

Implements hook_uninstall().

File

./sms.install, line 47
Install, update and uninstall functions for the smsframework module.

Code

function sms_uninstall() {
  drupal_uninstall_schema('sms');
  $variables = array();
  foreach ($variables as $variable) {
    variable_del($variable);
  }
}