You are here

function sms_uninstall in SMS Framework 7

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

Implements hook_uninstall().

File

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

Code

function sms_uninstall() {
  $variables = array();

  # XXX D7 porting issue: need to variable_del sms* variables on sms_uninstall()
  foreach ($variables as $variable) {
    variable_del($variable);
  }
}