function resource_hints_uninstall in Resource Hints 8
Same name and namespace in other branches
- 7.2 resource_hints.install \resource_hints_uninstall()
- 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();
}