/[drupal]/contributions/modules/rolereference/rolereference.install
ViewVC logotype

Contents of /contributions/modules/rolereference/rolereference.install

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Revision 1.2 - (show annotations) (download) (as text)
Thu Jan 8 21:09:45 2009 UTC (10 months, 2 weeks ago) by cyu
Branch: MAIN
CVS Tags: HEAD
Changes since 1.1: +34 -0 lines
File MIME type: text/x-php
D6 branch commit to head
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 }

  ViewVC Help
Powered by ViewVC 1.1.2