You are here

function tablefield_enable in TableField 6

Same name and namespace in other branches
  1. 7 tablefield.install \tablefield_enable()

Implementation of hook_enable().

Notify content module when this module is enabled.

File

./tablefield.install, line 29
Installation options for TableField

Code

function tablefield_enable() {
  drupal_load('module', 'content');
  content_notify('enable', 'tablefield');
}