function opening_hours_install in Opening hours 6
Same name and namespace in other branches
- 7 opening_hours.install \opening_hours_install()
Implements of hook_install().
File
- ./
opening_hours.install, line 92 - Database schema, installation and upgrade hooks for the opening hours module.
Code
function opening_hours_install() {
drupal_install_schema('opening_hours');
// By default, we want to use the admin theme for our interface. This
// requires admin_theme module to work properly in Drupal 6.
variable_set('admin_theme_opening_hours_opening_hours', 1);
}