Skip to content
boost.install 723 B
Newer Older
<?php
// $Id$

/**
 * @file
 * Handles Boost module installation and upgrade tasks.
 */

//////////////////////////////////////////////////////////////////////////////

/**
 * Implementation of hook_install(). Installs the current version of the database schema.
 */
function boost_install() {

  // 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.'));
}

//////////////////////////////////////////////////////////////////////////////