function boost_install in Boost 5
Same name and namespace in other branches
- 6 boost.install \boost_install()
Implementation of hook_install(). Installs the current version of the database schema.
File
- ./boost.install, line 13 
- Handles Boost module installation and upgrade tasks.
Code
function boost_install() {
  // Ensure that the module is loaded early in the bootstrap:
  db_query("UPDATE {system} SET weight = -90 WHERE name = 'boost'");
  // Forcibly disable Drupal's built-in SQL caching to prevent any conflicts of interest:
  if (variable_get('cache', CACHE_DISABLED) != CACHE_DISABLED) {
    variable_set('cache', CACHE_DISABLED);
    drupal_set_message(t('Drupal standard page caching disabled by Boost.'));
  }
  drupal_set_message(t('Boost module successfully installed.'));
}