dynamic_background.install in Dynamic Background 7
Same filename and directory in other branches
Installation file for dynamic background, currently only the uninstall function is present.
File
dynamic_background.installView source
<?php
/**
* @file
* Installation file for dynamic background, currently only the uninstall
* function is present.
*/
/**
* Implements hook_uninstall().
*/
function dynamic_background_uninstall() {
variable_del('dynamic_background_setting');
variable_del('dynamic_background_images');
variable_del('dynamic_background_active');
variable_del('dynamic_background_image_style');
variable_del('dynamic_background_weight');
}
Functions
Name | Description |
---|---|
dynamic_background_uninstall | Implements hook_uninstall(). |