function tabs_uninstall in Tabs (jQuery UI tabs) 6
Implementation of hook_uninstall().
File
- ./
tabs.install, line 13
Code
function tabs_uninstall() {
foreach (array(
'slide',
'fade',
'speed',
'navigation',
'nav_next',
'nav_previous',
'descriptive_urls',
) as $type) {
variable_del('tabs_' . $type);
}
}