function commerce_billy_mail_uninstall in Commerce Billy Mail 7
Implements hook_uninstall().
File
- ./
commerce_billy_mail.install, line 25 - Installation functions for commerce_billy_mail
Code
function commerce_billy_mail_uninstall() {
// Remove the general settings.
$result = db_query("SELECT name FROM {variable} WHERE name LIKE 'commerce_billy_mail_%'");
// Exclude variables here!!
$exclude = array();
while ($var_name = $result
->fetchAssoc()) {
if (!in_array($var_name['name'], $exclude)) {
variable_del($var_name['name']);
}
}
}