Issue #2851431 by Aliya: Delete Variables on uninstalling the module.

This commit is contained in:
samiahemdsiddiqui 2017-02-23 17:43:12 +05:00
parent 20c2f29551
commit 8ab394f0e6

15
hfs.install Normal file
View File

@ -0,0 +1,15 @@
<?php
/**
* @file
* Uninstall functions for hfs module.
*/
/**
* Implements hook_uninstall().
*/
function hfs_uninstall() {
variable_del("hfs_header_scripts");
variable_del("hfs_body_scripts");
variable_del("hfs_footer_scripts");
}