Parent Directory
|
Revision Log
|
Revision Graph
Added the voting forms and some theming.
| 1 | <?php |
| 2 | // $Id$ |
| 3 | |
| 4 | /** |
| 5 | * @file |
| 6 | * This is the install file for the Versus module. |
| 7 | */ |
| 8 | |
| 9 | /** |
| 10 | * Implementation of hook_install(). |
| 11 | */ |
| 12 | function versus_install() { |
| 13 | |
| 14 | /* |
| 15 | * Any setup goes here. |
| 16 | */ |
| 17 | |
| 18 | } |
| 19 | |
| 20 | /** |
| 21 | * Implementation of hook_uninstall(). |
| 22 | */ |
| 23 | function versus_uninstall() { |
| 24 | |
| 25 | /* |
| 26 | * Any takedown goes here. |
| 27 | */ |
| 28 | |
| 29 | variable_del('versus_types_enabled'); |
| 30 | variable_del('versus_voting_enabled'); |
| 31 | } |
| ViewVC Help | |
| Powered by ViewVC 1.1.2 |