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