You are here

cookie_banner.install in Cookie_Banner 7

Same filename and directory in other branches
  1. 8 cookie_banner.install

Install, update and uninstall functions for the Cookie Banner module.

File

cookie_banner.install
View source
<?php

/**
 * @file
 * Install, update and uninstall functions for the Cookie Banner module.
 *
 */

/**
 * Implements hook_uninstall().
 */
function cookie_banner_uninstall() {
  db_delete('variable')
    ->condition('name', db_like('cookie_banner_') . '%', 'LIKE')
    ->execute();
}

Functions

Namesort descending Description
cookie_banner_uninstall Implements hook_uninstall().