You are here

pace.install in PACE - Page load progress bar 7

Same filename and directory in other branches
  1. 8 pace.install
  2. 2.0.x pace.install

Presets PACE theme to minimal upon installation.

File

pace.install
View source
<?php

/**
 * @file
 * Presets PACE theme to minimal upon installation.
 */

/**
 * Implements hook_install().
 */
function pace_install() {
  variable_set('pace_theme', 'pace-theme-minimal.css');
}

/**
 * Implements hook_uninstall().
 */
function pace_uninstall() {
  variable_del('pace_theme');
}

Functions

Namesort descending Description
pace_install Implements hook_install().
pace_uninstall Implements hook_uninstall().