Mercurial > defr > drupal > scald > mee
view mee.install @ 12:da5d54d099b1
Fix the drag'n'drop, add a caption to the ressource manager.
tableDrag makeDraggable method expect a standard DOM object, not the jQuery
wrapper.
| author | Franck Deroche <franck@defr.org> |
|---|---|
| date | Fri, 05 Jun 2009 09:56:08 +0200 |
| parents | 548f63d8a41b |
| children | 50a57b1517cb |
line wrap: on
line source
<?php // $Id; /** * @file * Implementation of hook_install(). */ function mee_install() { drupal_load('module', 'content'); content_notify('install', 'mee'); } /** * Implementation of hook_uninstall(). */ function mee_uninstall() { drupal_load('module', 'content'); content_notify('uninstall', 'mee'); } /** * Implementation of hook_disable(). */ function mee_disable() { drupal_load('module', 'content'); content_notify('disable', 'mee'); }
