You are here

function resource_hints_uninstall in Resource Hints 8

Same name and namespace in other branches
  1. 7.2 resource_hints.install \resource_hints_uninstall()
  2. 7 resource_hints.install \resource_hints_uninstall()

Implements hook_uninstall().

File

./resource_hints.install, line 11
Install hooks for the resource hints module.

Code

function resource_hints_uninstall() {
  \Drupal::service('config.factory')
    ->getEditable('resource_hints.settings')
    ->delete();
}