emwave.install in Embedded Media Field 6
Same filename and directory in other branches
This is the emwave.module's install, configuration, and removal instructions.
File
contrib/emwave/emwave.installView 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
Name | 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(). |