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

Diff of /contributions/modules/computed_field/computed_field.install

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

revision 1.1, Wed Sep 10 16:09:31 2008 UTC revision 1.2, Tue Oct 7 17:28:15 2008 UTC
# Line 0  Line 1 
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    }

Legend:
Removed from v.1.1  
changed lines
  Added in v.1.2

  ViewVC Help
Powered by ViewVC 1.1.2