You are here

sassy.install in Sassy 7

Same filename and directory in other branches
  1. 7.3 sassy.install
  2. 7.2 sassy.install

Install, update and uninstall functions for the SASSY module.

File

sassy.install
View 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

Namesort descending Description
sassy_uninstall Implementation of hook_uninstall().