You are here

resource_hints.install in Resource Hints 8

Same filename and directory in other branches
  1. 7.2 resource_hints.install
  2. 7 resource_hints.install

Install hooks for the resource hints module.

File

resource_hints.install
View source
<?php

/**
 * @file
 * Install hooks for the resource hints module.
 */

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

Functions

Namesort descending Description
resource_hints_uninstall Implements hook_uninstall().