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

Contents of /contributions/modules/taxonomy_ticker/taxonomy_ticker.install

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


Revision 1.2 - (show annotations) (download) (as text)
Sat Sep 16 22:14:48 2006 UTC (3 years, 2 months ago) by gjmjr
Branch: MAIN
CVS Tags: DRUPAL-5--1-1, DRUPAL-5--1-0, DRUPAL-5--1-2, HEAD
Branch point for: DRUPAL-5
Changes since 1.1: +2 -1 lines
File MIME type: text/x-php
Added an option to show a teaser under the titles, added some missing translation functions
1 <?php
2 // $Id: taxonomy_ticker.install,v 1.1 2006/09/16 20:28:05 gjmjr Exp $
3
4 /**
5 * Implementation of hook_install().
6 */
7 function taxonomy_ticker_install() {
8 // nothing needs to be installed (yet)
9 }
10
11 /**
12 * Implementation of hook_uninstall().
13 */
14 function taxonomy_ticker_uninstall() {
15 // delete user settings
16 variable_del('taxonomy_ticker_tid');
17 variable_del('taxonomy_ticker_count');
18 variable_del('taxonomy_ticker_direction');
19 variable_del('taxonomy_ticker_speed');
20 variable_del('taxonomy_ticker_teaser');
21 }

  ViewVC Help
Powered by ViewVC 1.1.2