You are here

function css_emimage_disable in CSS Embedded Images 7

Implements hook_disable().

File

./css_emimage.install, line 11
Install, update, and uninstall functions for the css_emimage module.

Code

function css_emimage_disable() {

  // Clear CSS cache.
  _drupal_flush_css_js();
  drupal_clear_css_cache();

  // Remove empty css files.
  file_scan_directory('public://css', '/.*/', array(
    'callback' => 'css_emimage_delete_file_if_empty',
  ));
}