You are here

imceimage.install in Imce CCK Image 6

Same filename and directory in other branches
  1. 6.2 imceimage.install

File

imceimage.install
View source
<?php

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

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

/**
 * Implementation of hook_enable().
 */
function imceimage_enable() {
  drupal_load('module', 'content');
  content_notify('enable', 'imceimage');
}

/**
 * Implementation of hook_disable().
 */
function imceimage_disable() {
  drupal_load('module', 'content');
  content_notify('disable', 'imceimage');
}

Functions

Namesort descending Description
imceimage_disable Implementation of hook_disable().
imceimage_enable Implementation of hook_enable().
imceimage_install Implementation of hook_install().
imceimage_uninstall Implementation of hook_uninstall().