You are here

function content_theme_install in Content Theme 7.2

Same name and namespace in other branches
  1. 6 content_theme.install \content_theme_install()

Implements hook_install().

File

./content_theme.install, line 62
Install, update and uninstall functions for the content_theme module.

Code

function content_theme_install() {
  db_update('system')
    ->fields(array(
    'weight' => 40,
  ))
    ->condition('name', 'content_theme')
    ->execute();
}