Mercurial > defr > drupal > scald > mee
annotate mee.install @ 10:5328b450f7b7
Small but noticeable improvement to the library look
| author | Franck Deroche <franck@defr.org> |
|---|---|
| date | Wed, 03 Jun 2009 15:02:37 +0200 |
| parents | 548f63d8a41b |
| children | 50a57b1517cb |
| rev | line source |
|---|---|
| eads@0 | 1 <?php |
| eads@0 | 2 // $Id; |
| eads@0 | 3 |
| eads@0 | 4 /** |
| eads@0 | 5 * @file |
| eads@0 | 6 * Implementation of hook_install(). |
| eads@0 | 7 */ |
| eads@0 | 8 function mee_install() { |
| eads@0 | 9 drupal_load('module', 'content'); |
| eads@0 | 10 content_notify('install', 'mee'); |
| eads@0 | 11 } |
| eads@0 | 12 |
| eads@0 | 13 /** |
| eads@0 | 14 * Implementation of hook_uninstall(). |
| eads@0 | 15 */ |
| eads@0 | 16 function mee_uninstall() { |
| eads@0 | 17 drupal_load('module', 'content'); |
| eads@0 | 18 content_notify('uninstall', 'mee'); |
| eads@0 | 19 } |
| eads@0 | 20 |
| eads@0 | 21 /** |
| eads@0 | 22 * Implementation of hook_disable(). |
| eads@0 | 23 */ |
| eads@0 | 24 function mee_disable() { |
| eads@0 | 25 drupal_load('module', 'content'); |
| eads@0 | 26 content_notify('disable', 'mee'); |
| eads@0 | 27 } |
