You are here

function performance_install in Performance Logging and Monitoring 6.2

Same name and namespace in other branches
  1. 5 performance.install \performance_install()
  2. 6 performance.install \performance_install()
  3. 7.2 performance.install \performance_install()
  4. 7 performance.install \performance_install()

Implementation of hook_install().

File

./performance.install, line 141
Install and update for Performance Logging

Code

function performance_install() {
  drupal_install_schema('performance');

  // Set the weight so this module runs last
  db_query('UPDATE {system} SET weight = 3000 WHERE name = "performance"');
}