| 1 |
<?php
|
| 2 |
// $Id$
|
| 3 |
|
| 4 |
/**
|
| 5 |
* @file
|
| 6 |
*/
|
| 7 |
|
| 8 |
/**
|
| 9 |
* Implementation of hook_install().
|
| 10 |
*/
|
| 11 |
function rolereference_install() {
|
| 12 |
content_notify('install', 'rolereference');
|
| 13 |
}
|
| 14 |
|
| 15 |
/**
|
| 16 |
* Implementation of hook_uninstall().
|
| 17 |
*/
|
| 18 |
function rolereference_uninstall() {
|
| 19 |
content_notify('uninstall', 'rolereference');
|
| 20 |
}
|
| 21 |
|
| 22 |
/**
|
| 23 |
* Implementation of hook_enable().
|
| 24 |
*/
|
| 25 |
function rolereference_enable() {
|
| 26 |
content_notify('enable', 'rolereference');
|
| 27 |
}
|
| 28 |
|
| 29 |
/**
|
| 30 |
* Implementation of hook_disable().
|
| 31 |
*/
|
| 32 |
function rolereference_disable() {
|
| 33 |
content_notify('disable', 'rolereference');
|
| 34 |
}
|