rolereference.install in Role Reference 6
File
rolereference.installView source
<?php
/**
* @file
*/
/**
* Implementation of hook_install().
*/
function rolereference_install() {
if (function_exists('content_notify')) {
content_notify('install', 'rolereference');
}
}
/**
* Implementation of hook_uninstall().
*/
function rolereference_uninstall() {
content_notify('uninstall', 'rolereference');
}
/**
* Implementation of hook_enable().
*/
function rolereference_enable() {
content_notify('enable', 'rolereference');
}
/**
* Implementation of hook_disable().
*/
function rolereference_disable() {
content_notify('disable', 'rolereference');
}
Functions
Name | Description |
---|---|
rolereference_disable | Implementation of hook_disable(). |
rolereference_enable | Implementation of hook_enable(). |
rolereference_install | Implementation of hook_install(). |
rolereference_uninstall | Implementation of hook_uninstall(). |