function iframe_uninstall in Iframe 6
Same name and namespace in other branches
- 8.2 iframe.install \iframe_uninstall()
- 8 iframe.install \iframe_uninstall()
Implementation of hook_uninstall().
File
- ./
iframe.install, line 38 - Defines simple iframe field types. based on the cck-module "link" by quicksketch Functions for install and uninstall AND Migrations
Code
function iframe_uninstall() {
if (module_exists('content') && function_exists('content_notify')) {
content_notify('uninstall', 'iframe');
}
}