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