quant.install in Quant 6
Same filename and directory in other branches
File
quant.installView source
<?php
/**
* Implementation of hook_uninstall()
*/
function quant_uninstall() {
// Delete variables
foreach (array(
'quant_height',
'quant_weight',
'quant_visible',
'quant_palette',
'quant_use_images',
) as $var) {
variable_del($var);
}
}
Functions
Name![]() |
Description |
---|---|
quant_uninstall | Implementation of hook_uninstall() |