Introduced wrapper function addCreateTableSql(), fixed parameter order:
[mailer.git] / inc / extensions / ext-coupon.php
1 <?php
2 /************************************************************************
3  * Mailer-Project 0.2.1-FINAL                         Start: 01/07/2005 *
4  * ==========================                   Last change: 01/07/2005 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : ext-coupon.php                                   *
8  * -------------------------------------------------------------------- *
9  * Short description : Coupon system                                    *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Coupon-System                                    *
12  * -------------------------------------------------------------------- *
13  *                                                                      *
14  * -------------------------------------------------------------------- *
15  * $Revision::                                                        $ *
16  * $Date::                                                            $ *
17  * $Tag:: 0.2.1-FINAL                                                 $ *
18  * $Author::                                                          $ *
19  * -------------------------------------------------------------------- *
20  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
21  * Copyright (c) 2009 - 2011 by Mailer Developer Team                   *
22  * For more information visit: http://www.mxchange.org                  *
23  *                                                                      *
24  * This program is free software; you can redistribute it and/or modify *
25  * it under the terms of the GNU General Public License as published by *
26  * the Free Software Foundation; either version 2 of the License, or    *
27  * (at your option) any later version.                                  *
28  *                                                                      *
29  * This program is distributed in the hope that it will be useful,      *
30  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
31  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
32  * GNU General Public License for more details.                         *
33  *                                                                      *
34  * You should have received a copy of the GNU General Public License    *
35  * along with this program; if not, write to the Free Software          *
36  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
37  * MA  02110-1301  USA                                                  *
38  ************************************************************************/
39
40 // Some security stuff...
41 if (!defined('__SECURITY')) {
42         die();
43 } // END - if
44
45 // Version number
46 setThisExtensionVersion('0.0');
47
48 // Version history array (add more with , '0.1' and so on)
49 setExtensionVersionHistory(array('0.0'));
50
51 // This extension is in development (non-productive)
52 enableExtensionProductive(false);
53
54 switch (getExtensionMode()) {
55         case 'register': // Do stuff when installtion is running (modules.php?module=admin&action=login is called)
56                 // Coupon data
57                 addDropTableSql('coupons');
58                 addCreateTableSql('coupons', "(
59 `id` BIGINT(20) UNSIGNED NOT NULL AUTO_INCREMENT,
60 `timestamp_created` TIMESTAMP NOT NULL DEFAULT '0000-00-00 00:00:00',
61 `timestamp_expired` TIMESTAMP NOT NULL DEFAULT '0000-00-00 00:00:00',
62 `coupon_type` ENUM('CODE','API') NOT NULL DEFAULT 'CODE',
63 `coupon_code` VARCHAR(30) NULL DEFAULT NULL,
64 `total_created` UNSIGNED BIGINT(20) NOT NULL DEFAULT 0,
65 `total_used` UNSIGNED BIGINT(20) NOT NULL DEFAULT 0,
66 `coupon_description` TEXT,
67 PRIMARY KEY (`id`),
68 UNIQUE KEY (`coupon_code`)
69 ) TYPE = {?_TABLE_TYPE?} CHARACTER SET utf8 COLLATE utf8_general_ci COMMENT = 'Created coupons'");
70
71                 // Coupon->user connection table
72                 addDropTableSql('user_coupons');
73                 addCreateTableSql('coupons', "(
74 `id` BIGINT(20) UNSIGNED NOT NULL AUTO_INCREMENT,
75 `coupon_id BIGINT(20) UNSIGNED NOT NULL DEFAULT 0,
76 `userid` BIGINT(2) UNSIGNED NOT NULL DEFAULT 0,
77 PRIMARY KEY (`id`),
78 UNIQUE KEY `coupon_user` (`coupon_id`,`userid`)
79 ) TYPE = {?_TABLE_TYPE?} CHARACTER SET utf8 COLLATE utf8_general_ci COMMENT = 'Coupon->user connection'");
80
81                 // Configuration entries
82
83                 // Admin menus
84                 addAdminMenuSql('setup','config_coupon','Gutscheine','Allgemeine Einstellungen zu Code-Gutscheinen und Gutscheinen von Sponsoren (z.B. per API) k&ouml;nnen hier vorgenommen werden.', 15);
85                 break;
86
87         case 'remove': // Do stuff when removing extension
88                 // SQL commands to run
89                 addDropTableSql('coupons');
90                 addDropTableSql('user_coupons');
91                 break;
92
93         case 'activate': // Do stuff when admin activates this extension
94                 // SQL commands to run
95                 addExtensionSql('');
96                 break;
97
98         case 'deactivate': // Do stuff when admin deactivates this extension
99                 // SQL commands to run
100                 addExtensionSql('');
101                 break;
102
103         case 'update': // Update an extension
104                 switch (getCurrentExtensionVersion()) {
105                         case '0.0.1': // SQL queries for v0.0.1
106                                 addExtensionSql('');
107
108                                 // Update notes (these will be set as task text!)
109                                 setExtensionUpdateNotes('');
110                                 break;
111                 } // END - switch
112                 break;
113
114         case 'modify': // When the extension got modified
115                 break;
116
117         case 'test': // For testing purposes
118                 break;
119
120         case 'init': // Do stuff when extension is initialized
121                 break;
122
123         default: // Unknown extension mode
124                 logDebugMessage(__FILE__, __LINE__, sprintf("Unknown extension mode %s in extension %s detected.", getExtensionMode(), getCurrentExtensionName()));
125                 break;
126 } // END - switch
127
128 // [EOF]
129 ?>