You are here

function autologout_install in Automated Logout 7.2

Same name and namespace in other branches
  1. 6 autologout.install \autologout_install()
  2. 6.2 autologout.install \autologout_install()

Implements hook_install().

File

./autologout.install, line 14
Install file for Automated Logout Module

Code

function autologout_install() {

  // sink module's weight to the deepest depths of the module_list()
  db_query("UPDATE {system} SET weight = :weight WHERE name = :name", array(
    ':weight' => 1000,
    ':name' => 'autologout',
  ));
}