You are here

field_kaltura.install in Kaltura 6.2

File

plugins/field_kaltura/field_kaltura.install
View source
<?php

/*
 * @file
 * Installation process for kaltura CCK field module
 *
 */

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

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

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

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

Functions

Namesort descending Description
field_kaltura_disable Implementation of hook_disable().
field_kaltura_enable Implementation of hook_enable().
field_kaltura_install Implementation of hook_install().
field_kaltura_uninstall Implementation of hook_uninstall().