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

Contents of /contributions/modules/computed_field/computed_field.install

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


Revision 1.3 - (show annotations) (download) (as text)
Fri Jul 31 21:52:51 2009 UTC (3 months, 4 weeks ago) by pl2
Branch: MAIN
CVS Tags: HEAD
Changes since 1.2: +0 -0 lines
File MIME type: text/x-php
Bringing HEAD inline with dev version
1 <?php
2 // $Id: computed_field.install,v 1.1.2.1 2008/09/10 16:09:31 moonshine Exp $
3
4 /**
5 * Implementation of hook_install().
6 */
7 function computed_field_install() {
8 drupal_load('module', 'content');
9 content_notify('install', 'computed_field');
10 }
11
12 /**
13 * Implementation of hook_uninstall().
14 */
15 function computed_field_uninstall() {
16 drupal_load('module', 'content');
17 content_notify('uninstall', 'computed_field');
18 }
19
20 /**
21 * Implementation of hook_enable().
22 */
23 function computed_field_enable() {
24 drupal_load('module', 'content');
25 content_notify('enable', 'computed_field');
26 }
27
28 /**
29 * Implementation of hook_disable().
30 */
31 function computed_field_disable() {
32 drupal_load('module', 'content');
33 content_notify('disable', 'computed_field');
34 }

  ViewVC Help
Powered by ViewVC 1.1.2