You are here

cck_list.install in CCK List 6

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

Implementation of hook_install().

File

cck_list.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_list_install() {
  drupal_load('module', 'content');
  content_notify('install', 'cck_list');
}

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

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

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

Functions

Namesort descending Description
cck_list_disable Implementation of hook_disable().
cck_list_enable Implementation of hook_enable().
cck_list_install @file Implementation of hook_install().
cck_list_uninstall Implementation of hook_uninstall().