/[drupal]/contributions/modules/liquid/liquid_moveref.install
ViewVC logotype

Contents of /contributions/modules/liquid/liquid_moveref.install

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


Revision 1.1 - (show annotations) (download) (as text)
Thu Feb 8 21:02:10 2007 UTC (2 years, 9 months ago) by sorenp
Branch: MAIN
CVS Tags: DRUPAL-5--0-1, HEAD
Branch point for: DRUPAL-5
File MIME type: text/x-php
The next development version of liquid. Updated for Drupal 5.1 (new files)
1 <?php
2
3 /**
4 * Implementation of hook_install().
5 */
6 function liquid_moveref_install() {
7 switch ($GLOBALS['db_type']) {
8 case 'mysql':
9 case 'mysqli':
10 db_query("CREATE TABLE {wiki_moveref} (
11 src varchar(128) NOT NULL,
12 dest varchar(128) NOT NULL,
13 PRIMARY KEY (src)
14 ) /*!40100 DEFAULT CHARACTER SET UTF8 */ ");
15 break;
16 case 'pgsql':
17 break;
18 }
19 }
20
21 /**
22 * Implementation of hook_uninstall().
23 */
24 function liquid_moveref_uninstall() {
25 db_query('DROP TABLE {wiki_moveref}');
26 }

  ViewVC Help
Powered by ViewVC 1.1.2