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

Contents of /contributions/modules/AudioRecordingField/AudioRecordingField.install

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


Revision 1.1 - (show annotations) (download) (as text)
Thu Aug 7 13:43:01 2008 UTC (15 months, 2 weeks ago) by alphaxp
Branch: MAIN
CVS Tags: DRUPAL-6--1-0-BETA1, HEAD
Branch point for: DRUPAL-6--1
File MIME type: text/x-php
First AudioRecordingField commit
1 <?php
2 //$id
3 /**
4 * Implementation of hook_install().
5 */
6 function audioRecordingField_install() {
7 content_notify('install', 'audioRecordingField');
8 }
9
10 /**
11 * Implementation of hook_uninstall().
12 */
13 function audioRecordingField_uninstall() {
14 content_notify('uninstall', 'audioRecordingField');
15 }
16
17 /**
18 * Implementation of hook_enable().
19 *
20 * Notify content module when this module is enabled.
21 */
22 function audioRecordingField_enable() {
23 watchdog('testing','enable');
24 content_notify('enable', 'audioRecordingField');
25 }
26
27 /**
28 * Implementation of hook_disable().
29 *
30 * Notify content module when this module is disabled.
31 */
32 function audioRecordingField_disable() {
33 content_notify('disable', 'audioRecordingField');
34 }

  ViewVC Help
Powered by ViewVC 1.1.2