You are here

function simplify_install in Simplify 7.3

Implements hook_install().

File

./simplify.install, line 10
Install, update and uninstall functions for the Simplify module.

Code

function simplify_install() {

  // Update module weight
  db_update('system')
    ->fields(array(
    'weight' => 5,
  ))
    ->condition('name', 'simplify')
    ->execute();
}