You are here

function mimemail_uninstall in Mime Mail 6

Same name and namespace in other branches
  1. 7 mimemail.install \mimemail_uninstall()

Implements hook_uninstall().

File

./mimemail.install, line 51
Install, update and uninstall functions for the Mime Mail module.

Code

function mimemail_uninstall() {
  $variables = array(
    'mimemail_alter',
    'mimemail_crlf',
    'mimemail_engine',
    'mimemail_incoming',
    'mimemail_key',
    'mimemail_textonly',
    'mimemail_sitestyle',
    'mimemail_linkonly',
    'mimemail_preserve_class',
  );
  foreach ($variables as $variable) {
    variable_del($variable);
  }
}