| 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 |
}
|