Parent Directory
|
Revision Log
|
Revision Graph
*** empty log message ***
| 1 | <?php |
| 2 | /** |
| 3 | * Implementation of hook_install(). |
| 4 | */ |
| 5 | function audio_external_install() { |
| 6 | global $db_type; |
| 7 | |
| 8 | switch ($db_type) { |
| 9 | case 'mysql': |
| 10 | case 'mysqli': |
| 11 | // db_query( |
| 12 | // '' |
| 13 | // ); |
| 14 | break; |
| 15 | } |
| 16 | } |
| 17 | |
| 18 | /** |
| 19 | * Implementation of hook_uninstall(). |
| 20 | */ |
| 21 | function book_uninstall() { |
| 22 | // db_query(''); |
| 23 | } |
| ViewVC Help | |
| Powered by ViewVC 1.1.2 |