sassy.install in Sassy 7
Same filename and directory in other branches
Install, update and uninstall functions for the SASSY module.
File
sassy.installView source
<?php
/**
* @file
* Install, update and uninstall functions for the SASSY module.
*/
/**
* Implementation of hook_uninstall().
*/
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');
}
Functions
Name | Description |
---|---|
sassy_uninstall | Implementation of hook_uninstall(). |