You are here

tablefield.install in TableField 6

Installation options for TableField

File

tablefield.install
View source
<?php

/**
* @file
* Installation options for TableField
*/

/*
* Implementation of hook_install().
*/
function tablefield_install() {
  drupal_load('module', 'content');
  content_notify('install', 'tablefield');
}

/**
* Implementation of hook_uninstall().
*/
function tablefield_uninstall() {
  drupal_load('module', 'content');
  content_notify('uninstall', 'tablefield');
}

/**
* Implementation of hook_enable().
*
* Notify content module when this module is enabled.
*/
function tablefield_enable() {
  drupal_load('module', 'content');
  content_notify('enable', 'tablefield');
}

/**
* Implementation of hook_disable().
*
* Notify content module when this module is disabled.
*/
function tablefield_disable() {
  drupal_load('module', 'content');
  content_notify('disable', 'tablefield');
}

Functions

Namesort descending Description
tablefield_disable Implementation of hook_disable().
tablefield_enable Implementation of hook_enable().
tablefield_install
tablefield_uninstall Implementation of hook_uninstall().