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

Contents of /contributions/modules/linkimagefield/linkimagefield.install

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


Revision 1.3 - (show annotations) (download) (as text)
Wed Jul 1 02:17:28 2009 UTC (4 months, 4 weeks ago) by johnfyoung
Branch: MAIN
CVS Tags: DRUPAL-6--1-0-ALPHA4, DRUPAL-6--1-0-ALPHA2, DRUPAL-6--1-0-ALPHA3, DRUPAL-6--1-0-ALPHA1, DRUPAL-6--1-0-BETA2, DRUPAL-6--1-0-BETA1, HEAD
Branch point for: DRUPAL-6--1
Changes since 1.2: +25 -64 lines
File MIME type: text/x-php
Initial DRUPAL-6--1 Branch commit
1 <?php
2 // $Id$
3 /**
4 * @file
5 *
6 * linkimagefield install and update code
7 * @author John Young <john@codeandcreative.com>
8 */
9
10 /**
11 * Implementation of hook_install().
12 */
13 function linkimagefield_install() {
14 drupal_load('module', 'content');
15 content_notify('install', 'linkimagefield');
16 }
17
18 /**
19 * Implementation of hook_uninstall().
20 */
21 function linkimagefield_uninstall() {
22 drupal_load('module', 'content');
23 content_notify('uninstall', 'linkimagefield');
24 }
25
26 /**
27 * Implementation of hook_enable().
28 */
29 function linkimagefield_enable() {
30 drupal_load('module', 'content');
31 content_notify('enable', 'linkimagefield');
32 }
33
34 /**
35 * Implementation of hook_disable().
36 */
37 function linkimagefield_disable() {
38 drupal_load('module', 'content');
39 content_notify('disable', 'linkimagefield');
40 }

  ViewVC Help
Powered by ViewVC 1.1.2