pace.install in PACE - Page load progress bar 7
Same filename and directory in other branches
Presets PACE theme to minimal upon installation.
File
pace.installView 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
Name | Description |
---|---|
pace_install | Implements hook_install(). |
pace_uninstall | Implements hook_uninstall(). |