You are here

function sassy_uninstall in Sassy 7

Same name and namespace in other branches
  1. 7.3 sassy.install \sassy_uninstall()

Implementation of hook_uninstall().

File

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

Code

function sassy_uninstall() {
  variable_del('sassy_cache');
  variable_del('sassy_devel');

  // Delete the folder for the SCSS / SASS cache.
  file_unmanaged_delete_recursive('public://sassy');
}