| [ Index ] |
PHP Cross Reference of Drupal 6 (yi-drupal) |
[Summary view] [Print] [Text view]
1 <?php 2 3 /** 4 * Implementation of hook_install(). 5 */ 6 function uploadfield_install() { 7 drupal_load('module', 'content'); 8 content_notify('install', 'uploadfield'); 9 } 10 11 function uploadfield_uninstall() { 12 drupal_load('module', 'content'); 13 content_notify('uninstall', 'uploadfield'); 14 } 15 16 function uploadfield_enable() { 17 drupal_load('module', 'content'); 18 content_notify('enable', 'uploadfield'); 19 } 20 21 function uploadfield_disable() { 22 drupal_load('module', 'content'); 23 content_notify('disable', 'uploadfield'); 24 }
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
| Generated: Mon Jul 9 18:01:44 2012 | Cross-referenced by PHPXref 0.7 |