function optionwidgets_disable in Content Construction Kit (CCK) 6.2
Same name and namespace in other branches
- 6.3 modules/optionwidgets/optionwidgets.install \optionwidgets_disable()
- 6 modules/optionwidgets/optionwidgets.install \optionwidgets_disable()
Implementation of hook_disable().
Notify content module when this module is disabled.
File
- modules/
optionwidgets/ optionwidgets.install, line 35 - Implementation of hook_install().
Code
function optionwidgets_disable() {
drupal_load('module', 'content');
content_notify('disable', 'optionwidgets');
}