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

Contents of /contributions/modules/lightbox2/lightbox2.install

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


Revision 1.1 - (show annotations) (download) (as text)
Mon Apr 30 10:36:39 2007 UTC (2 years, 6 months ago) by snpower
Branch: MAIN
CVS Tags: HEAD
Branch point for: DRUPAL-5
File MIME type: text/x-php
install file for drupal 5.x version - contains install() and uninstall()
functions
1 <?php
2 // $Id $
3
4 /**
5 * Implementation of hook_install()
6 * just give a message
7 */
8 function lightbox2_install() {
9 watchdog('lightbox2', 'lightbox2 module installed');
10 }
11
12 /**
13 * Implementation of hook_uninstall()
14 */
15 function lightbox2_uninstall() {
16 // delete the variables we created
17 variable_del('lightbox2_plus');
18 variable_del('lightbox2_image_node');
19 variable_del('lightbox2_image_group');
20 variable_del('lightbox2G2_filter');
21
22 watchdog('lightbox2', 'lightbox2 module un-installed');
23 }

  ViewVC Help
Powered by ViewVC 1.1.2