You are here

function autologout_install in Automated Logout 6

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

Implementation of hook_install().

File

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

Code

function autologout_install() {

  // Create tables.
  drupal_install_schema('autologout');

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