view mee.install @ 5:5df98f90134d

Fleshed out the basics of Scald support. MEE + Scald + DnD + Scald DnD Library will deliver a basic-functioning MEE implementation. CRUD ops for Scald Atoms based on the MEE CCK fields all implemented. Admin options for widgets implemented.
author Tom Wolf <tom@chicagotech.org>
date Thu, 30 Apr 2009 15:13:58 -0400
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');
 }