cookie_banner.install in Cookie_Banner 7
Same filename and directory in other branches
Install, update and uninstall functions for the Cookie Banner module.
File
cookie_banner.installView 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
Name | Description |
---|---|
cookie_banner_uninstall | Implements hook_uninstall(). |