You are here

cookiepro.install in CookiePro by OneTrust 8

Same filename and directory in other branches
  1. 7 cookiepro.install
  2. 2.x cookiepro.install

Uninstall functions for cookiepro module.

File

cookiepro.install
View source
<?php

/**
 * @file
 * Uninstall functions for cookiepro module.
 */

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

Functions

Namesort descending Description
cookiepro_uninstall Implements hook_uninstall().