You are here

blockreference.install in Block reference 6

Same filename and directory in other branches
  1. 7.2 blockreference.install
  2. 7 blockreference.install

File

blockreference.install
View source
<?php

/**
 * Implementation of hook_install().
 */
function blockreference_install() {
  content_notify('install', 'blockreference');
}

/**
 * Implementation of hook_uninstall().
 */
function blockreference_uninstall() {
  content_notify('uninstall', 'blockreference');
}

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

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

Functions

Namesort descending Description
blockreference_disable Implementation of hook_disable().
blockreference_enable Implementation of hook_enable().
blockreference_install Implementation of hook_install().
blockreference_uninstall Implementation of hook_uninstall().