function opening_hours_uninstall in Opening hours 7
Same name and namespace in other branches
- 6 opening_hours.install \opening_hours_uninstall()
Implements hook_uninstall().
File
- ./
opening_hours.install, line 103 - Database schema, installation and upgrade hooks for the opening hours module.
Code
function opening_hours_uninstall() {
// Delete any variables we have set.
variable_del('admin_theme_opening_hours_opening_hours');
db_query("DELETE FROM {variable} WHERE name LIKE 'opening_hours_%'");
}