function classy_panel_styles_uninstall in Classy Panel Styles 7
Implements hook_uninstall().
Deletes all Classy Panel Styles settings from Drupal variable storage.
File
- ./
classy_panel_styles.install, line 39 - Install file for Classy Panels module.
Code
function classy_panel_styles_uninstall() {
module_load_include('module', 'classy_panel_styles');
$variables = array(
CLASSY_PANEL_STYLES_CSS_PATH,
CLASSY_PANEL_STYLES_EDITOR_STYLING,
CLASSY_PANEL_STYLES_REGION_STYLE,
CLASSY_PANEL_STYLES_DISPLAY_DEFAULT,
);
foreach ($variables as $variable) {
variable_del($variable);
}
}