| 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 |
}
|