view mee.install @ 0:548f63d8a41b

Blam, simple MEE cck field type.
author David Eads <eads@chicagotech.org>
date Tue, 10 Mar 2009 13:44:50 -0500
parents
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');
 }