Parent Directory
|
Revision Log
|
Revision Graph
port from 4.6.x to 5.x and general code clean-up, added: * new results pager * new basic search form checkboxes to select z39.50 server
| 1 | <?php |
| 2 | // $Id$ |
| 3 | |
| 4 | /** |
| 5 | * Implementation of hook_install(). |
| 6 | */ |
| 7 | function z3950_install() { |
| 8 | require_once(dirname(__FILE__) .'/z3950.module'); |
| 9 | _z3950_install_check(); |
| 10 | } |
| 11 | |
| 12 | /** |
| 13 | * Implementation of hook_uninstall(). |
| 14 | */ |
| 15 | function z3950_uninstall() { |
| 16 | variable_del('z3950_zurls'); |
| 17 | variable_del('z3950_syntax'); |
| 18 | } |
| ViewVC Help | |
| Powered by ViewVC 1.1.2 |