function page_theme_install in Page Theme 7.2
Same name and namespace in other branches
- 6 page_theme.install \page_theme_install()
Implements hook_install().
File
- ./
page_theme.install, line 12 - Install, update and uninstall functions for the page_theme module.
Code
function page_theme_install() {
db_update('system')
->fields(array(
'weight' => 50,
))
->condition('name', 'page_theme')
->execute();
}