You are here

emwave.install in Embedded Media Field 6.3

Same filename and directory in other branches
  1. 6 contrib/emwave/emwave.install
  2. 6.2 contrib/emwave/emwave.install

This is the emwave.module's install, configuration, and removal instructions.

File

contrib/emwave/emwave.install
View source
<?php

/**
 * @file
 * This is the emwave.module's install, configuration, and removal instructions.
 */

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

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

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

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

Functions

Namesort descending Description
emwave_disable Implementation of hook_disable().
emwave_enable Implementation of hook_enable().
emwave_install Implementation of hook_install().
emwave_uninstall Implementation of hook_uninstall().