You are here

function pace_uninstall in PACE - Page load progress bar 8

Same name and namespace in other branches
  1. 7 pace.install \pace_uninstall()
  2. 2.0.x pace.install \pace_uninstall()

Implements hook_uninstall().

File

./pace.install, line 11
Presets PACE theme to minimal upon installation.

Code

function pace_uninstall() {
  \Drupal::configFactory()
    ->getEditable('pace.settings')
    ->delete();
}