You are here

conditional_styles.install in Conditional Stylesheets 7.2

Same filename and directory in other branches
  1. 6 conditional_styles.install

Provides upgrade function for conditional_styles.

File

conditional_styles.install
View source
<?php

/**
 * @file
 * Provides upgrade function for conditional_styles.
 */

/**
 * Removes the variables used by 6.x-1.x.
 */
function conditional_styles_update_7201() {

  // Delete no-longer-needed conditional stylesheets variables.
  $themes = list_themes();
  foreach (array_keys($themes) as $theme) {
    variable_del('conditional_styles_' . $theme);
    variable_del('conditional_styles_' . $theme . '_rtl');
  }

  // Clear the page cache.
  cache_clear_all();
}

Functions

Namesort descending Description
conditional_styles_update_7201 Removes the variables used by 6.x-1.x.