You are here

function content_theme_uninstall in Content Theme 6

Same name and namespace in other branches
  1. 7.2 content_theme.install \content_theme_uninstall()
  2. 7 content_theme.install \content_theme_uninstall()

Implementation of hook_uninstall().

File

./content_theme.install, line 71
Install, update and uninstall functions for the content_theme module.

Code

function content_theme_uninstall() {
  drupal_uninstall_schema('content_theme');
  foreach (node_get_types('names') as $type => $name) {
    variable_del('content_theme_content_type_edit_' . $type);
    variable_del('content_theme_content_type_view_' . $type);
  }
  variable_del('content_theme_content_wide_edit');
  variable_del('content_theme_content_wide_view');
}