fancybox.install in fancyBox 6
Same filename and directory in other branches
Installation settings for Fancybox module.
File
fancybox.installView source
<?php
/**
* @file
* Installation settings for Fancybox module.
*/
/**
* Implementation of hook_uninstall()
*/
function fancybox_uninstall() {
// Delete variables.
$variables = array(
'fancybox_path',
'fancybox_settings',
'fancybox_files',
);
foreach ($variables as $variable) {
variable_del($variable);
}
}
Functions
Name![]() |
Description |
---|---|
fancybox_uninstall | Implementation of hook_uninstall() |