blockreference.install in Block reference 6
Same filename and directory in other branches
File
blockreference.installView 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
Name | 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(). |