You are here

add_to_head.install in Add To Head 8

Same filename and directory in other branches
  1. 6 add_to_head.install
  2. 7 add_to_head.install

This file just contains an implementaion of hook_uninstall to clean up after ourselves.

File

add_to_head.install
View source
<?php

/**
 * @file
 * This file just contains an implementaion of hook_uninstall to clean up after ourselves.
 */

/**
 * Implements hook_uninstall().
 */
function add_to_head_uninstall() {
  \Drupal::configFactory()
    ->getEditable('add_to_head.settings')
    ->clear('add_to_head_profiles')
    ->save();
}

Functions

Namesort descending Description
add_to_head_uninstall Implements hook_uninstall().