function tablefield_disable in TableField 6
Same name and namespace in other branches
- 7 tablefield.install \tablefield_disable()
Implementation of hook_disable().
Notify content module when this module is disabled.
File
- ./
tablefield.install, line 39 - Installation options for TableField
Code
function tablefield_disable() {
drupal_load('module', 'content');
content_notify('disable', 'tablefield');
}