function swiftmailer_uninstall in Swift Mailer 7
Implements hook_uninstall().
File
- ./
swiftmailer.install, line 24 - This is the install file.
Code
function swiftmailer_uninstall() {
variable_del('swiftmailer_path');
variable_del('swiftmailer_format');
variable_del('swiftmailer_respect_format');
variable_del('swiftmailer_convert_mode');
variable_del('swiftmailer_convert_library');
variable_del('swiftmailer_character_set');
variable_del('swiftmailer_transport');
variable_del('swiftmailer_smtp_host');
variable_del('swiftmailer_smtp_port');
variable_del('swiftmailer_smtp_encryption');
variable_del('swiftmailer_smtp_username');
variable_del('swiftmailer_smtp_password');
variable_del('swiftmailer_sendmail_path');
variable_del('swiftmailer_sendmail_mode');
variable_del('swiftmailer_sender_name');
variable_del('swiftmailer_sender_email');
}