You are here

function dynamic_background_views_uninstall in Dynamic Background 7

Same name and namespace in other branches
  1. 6 modules/dynamic_background_views/dynamic_background_views.install \dynamic_background_views_uninstall()
  2. 7.2 modules/dynamic_background_views/dynamic_background_views.install \dynamic_background_views_uninstall()

Implementation of hook_uninstall():

File

modules/dynamic_background_views/dynamic_background_views.install, line 43
Installes the database scheme and handles install and uninstall of the module.

Code

function dynamic_background_views_uninstall() {

  // Remove database table.
  drupal_uninstall_schema('dynamic_background_views');

  // Remove settings.
  variable_del('dynamic_background_views');
  variable_del('dynamic_background_views_css');
  variable_del('dynamic_background_views_image_style');
}