You are here

cck_table.install in CCK Table Field 6

Same filename and directory in other branches
  1. 8 cck_table.install
  2. 7 cck_table.install

Implementation of hook_install().

File

cck_table.install
View source
<?php

/**
 *  Module coverted to 6 by iStryker
 *  Sponser by Themes 24/7  http://www.themes247.com
 */

/**
 * @file
 * Implementation of hook_install().
 */
function cck_table_install() {
  drupal_load('module', 'content');
  content_notify('install', 'cck_table');
}

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

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

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

Functions

Namesort descending Description
cck_table_disable Implementation of hook_disable().
cck_table_enable Implementation of hook_enable().
cck_table_install @file Implementation of hook_install().
cck_table_uninstall Implementation of hook_uninstall().