function html5_tools_uninstall in HTML5 Tools 7
Implements hook_uninstall().
File
- ./
html5_tools.install, line 21 - Install file for the htm5_tools module.
Code
function html5_tools_uninstall() {
// Remove date format for the ISO 8601 format type.
$type = 'html5_tools_iso8601';
variable_del('date_format_' . $type);
// Delete all the html5_tools variables and then clear the variable cache.
db_query("DELETE FROM {variable} WHERE name LIKE 'html5_tools_%'");
cache_clear_all('variables', 'cache');
}