/[drupal]/contributions/modules/flashfield/flashfield.install
ViewVC logotype

Contents of /contributions/modules/flashfield/flashfield.install

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Revision 1.2 - (show annotations) (download) (as text)
Sun Apr 26 06:25:32 2009 UTC (7 months ago) by stuartgreenfield
Branch: MAIN
CVS Tags: HEAD
Changes since 1.1: +1 -15 lines
File MIME type: text/x-php
Work on integrated flashfield (works like imagefield)
1 <?php
2 // $Id: flashfield.install,v 1.31 2009/04/15 20:15:03 quicksketch Exp $
3
4 /**
5 * Implementation of hook_install().
6 */
7 function flashfield_install() {
8 drupal_load('module', 'content');
9 content_notify('install', 'flashfield');
10 }
11
12 function flashfield_uninstall() {
13 drupal_load('module', 'content');
14 content_notify('uninstall', 'flashfield');
15 }
16
17 function flashfield_enable() {
18 drupal_load('module', 'content');
19 content_notify('enable', 'flashfield');
20 }
21
22 function flashfield_disable() {
23 drupal_load('module', 'content');
24 content_notify('disable', 'flashfield');
25 }

  ViewVC Help
Powered by ViewVC 1.1.2