Area 'modify' added to all extensions, some fixes for installing/modifying extension
[mailer.git] / inc / extensions / ext-payout.php
1 <?php
2 /************************************************************************
3  * MXChange v0.2.1                                    Start: 04/11/2004 *
4  * ================                             Last change: 11/15/2004 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : ext-payout.php                                   *
8  * -------------------------------------------------------------------- *
9  * Short description : Payout extension                                 *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Auszahlung-Erweiterung                           *
12  * -------------------------------------------------------------------- *
13  *                                                                      *
14  * -------------------------------------------------------------------- *
15  * Copyright (c) 2003 - 2008 by Roland Haeder                           *
16  * For more information visit: http://www.mxchange.org                  *
17  *                                                                      *
18  * This program is free software; you can redistribute it and/or modify *
19  * it under the terms of the GNU General Public License as published by *
20  * the Free Software Foundation; either version 2 of the License, or    *
21  * (at your option) any later version.                                  *
22  *                                                                      *
23  * This program is distributed in the hope that it will be useful,      *
24  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
25  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
26  * GNU General Public License for more details.                         *
27  *                                                                      *
28  * You should have received a copy of the GNU General Public License    *
29  * along with this program; if not, write to the Free Software          *
30  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
31  * MA  02110-1301  USA                                                  *
32  ************************************************************************/
33
34 // Some security stuff...
35 if (!defined('__SECURITY')) {
36         $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
37         require($INC);
38 }
39
40 // Version of this extension
41 EXT_SET_VERSION("0.3.8");
42
43 // Version history array (add more with , "0.1" and so on)
44 EXT_SET_VER_HISTORY(array("0.0", "0.1", "0.1.1", "0.1.2", "0.1.3", "0.1.4", "0.1.5", "0.1.6", "0.1.7", "0.1.8", "0.1.9", "0.2.0", "0.2.1", "0.2.2", "0.2.3", "0.2.4", "0.2.5", "0.2.6", "0.2.7", "0.2.8", "0.2.9", "0.3.0", "0.3.1", "0.3.2", "0.3.3", "0.3.4", "0.3.5", "0.3.6", "0.3.7", "0.3.8"));
45
46 switch ($EXT_LOAD_MODE)
47 {
48 case "register": // Do stuff when installation is running (modules.php?module=admin&action=login is called)
49         // SQL commands to run
50         ADD_SQL("DROP TABLE IF EXISTS `{!_MYSQL_PREFIX!}_user_payouts`");
51         ADD_SQL("CREATE TABLE `{!_MYSQL_PREFIX!}_user_payouts` (
52 id BIGINT(20) UNSIGNED NOT NULL AUTO_INCREMENT,
53 userid BIGINT(20) UNSIGNED NOT NULL DEFAULT 0,
54 payout_total FLOAT(22,3) UNSIGNED NOT NULL DEFAULT '0.000',
55 target_account VARCHAR(255) NOT NULL DEFAULT '',
56 target_bank VARCHAR(255) NOT NULL DEFAULT '',
57 payout_id BIGINT(20) UNSIGNED NOT NULL DEFAULT 0,
58 payout_timestamp VARCHAR(10) NOT NULL DEFAULT 0,
59 status ENUM('NEW','ACCEPTED','REJECTED') NOT NULL DEFAULT 'NEW',
60 KEY(userid),
61 KEY(payout_id),
62 PRIMARY KEY(id)
63 ) TYPE={!_TABLE_TYPE!}");
64         ADD_SQL("DROP TABLE IF EXISTS `{!_MYSQL_PREFIX!}_payout_types`");
65         ADD_SQL("CREATE TABLE `{!_MYSQL_PREFIX!}_payout_types` (
66 id BIGINT(20) UNSIGNED NOT NULL AUTO_INCREMENT,
67 type VARCHAR(255) NOT NULL DEFAULT '',
68 rate FLOAT(22,3) UNSIGNED NOT NULL DEFAULT '0.000',
69 min_points BIGINT(20) UNSIGNED NOT NULL DEFAULT 0,
70 PRIMARY KEY(id)
71 ) TYPE={!_TABLE_TYPE!}");
72         ADD_SQL("INSERT INTO `{!_MYSQL_PREFIX!}_admin_menu` (`action`,`what`,`title`,`descr`,`sort`) VALUES ('setup','config_payouts','Auszahlungen','Auszahlungsarten einstellen, neu anlegen oder l&ouml;schen.','15')");
73         ADD_SQL("INSERT INTO `{!_MYSQL_PREFIX!}_admin_menu` (`action`,`what`,`title`,`descr`,`sort`) VALUES ('payouts','list_payouts','Anfragen auflisten','Listet alle Auszahlungsanfragen Ihrer Mitglieder auf.','16')");
74         ADD_SQL("INSERT INTO `{!_MYSQL_PREFIX!}_member_menu` (`action`,`what`,`title`,`visible`,`locked`,`sort`) VALUES ('main','payout','Auszahlungen','N','N','11')");
75         break;
76
77 case "remove": // Do stuff when removing extension
78         // SQL commands to run
79         ADD_SQL("DROP TABLE IF EXISTS `{!_MYSQL_PREFIX!}_user_payouts`");
80         ADD_SQL("DROP TABLE IF EXISTS `{!_MYSQL_PREFIX!}_payout_types`");
81         ADD_SQL("DELETE LOW_PRIORITY FROM `{!_MYSQL_PREFIX!}_admin_menu` WHERE `action`='payouts'");
82         ADD_SQL("DELETE LOW_PRIORITY FROM `{!_MYSQL_PREFIX!}_member_menu` WHERE `what`='payout' LIMIT 1");
83         break;
84
85 case "activate": // Do stuff when admin activates this extension
86         // SQL commands to run
87         ADD_SQL("UPDATE `{!_MYSQL_PREFIX!}_member_menu` SET `visible`='Y', `locked`='N' WHERE `what`='payout' LIMIT 1");
88         break;
89
90 case "deactivate": // Do stuff when admin deactivates this extension
91         // SQL commands to run
92         ADD_SQL("UPDATE `{!_MYSQL_PREFIX!}_member_menu` SET `visible`='N', `locked`='Y' WHERE `what`='payout' LIMIT 1");
93         break;
94
95 case "update": // Update an extension
96         switch ($EXT_VER)
97         {
98         case "0.1.2": // SQL queries for v0.1.2
99                 ADD_SQL("INSERT INTO `{!_MYSQL_PREFIX!}_admin_menu` (`action`,`what`,`title`,`descr`,`sort`) VALUES ('payouts', NULL, 'Auszahlungsmanagement','Management der Auszahlungsarten.','8')");
100                 ADD_SQL("UPDATE `{!_MYSQL_PREFIX!}_admin_menu` SET `action`='payouts', `title`='Einstellungen' WHERE `action`='setup' AND `what`='config_payouts' LIMIT 1");
101                 break;
102
103         case "0.1.3": // SQL queries for v0.1.3
104                 ADD_SQL("ALTER TABLE `{!_MYSQL_PREFIX!}_payout_types` ADD from_account VARCHAR(255) NOT NULL DEFAULT ''");
105                 ADD_SQL("ALTER TABLE `{!_MYSQL_PREFIX!}_payout_types` ADD from_pass VARCHAR(255) NOT NULL DEFAULT ''");
106                 ADD_SQL("ALTER TABLE `{!_MYSQL_PREFIX!}_payout_types` ADD engine_url VARCHAR(255) NOT NULL DEFAULT ''");
107                 ADD_SQL("ALTER TABLE `{!_MYSQL_PREFIX!}_payout_types` ADD engine_ret_ok VARCHAR(255) NOT NULL DEFAULT ''");
108                 ADD_SQL("ALTER TABLE `{!_MYSQL_PREFIX!}_payout_types` ADD engine_ret_failed VARCHAR(255) NOT NULL DEFAULT ''");
109                 ADD_SQL("ALTER TABLE `{!_MYSQL_PREFIX!}_payout_types` ADD pass_enc ENUM('md5','base64','none') NOT NULL DEFAULT 'md5'");
110                 break;
111
112         case "0.1.4": // SQL queries for v0.1.4
113                 ADD_SQL("ALTER TABLE `{!_MYSQL_PREFIX!}_user_payouts` ADD password VARCHAR(255) NOT NULL DEFAULT ''");
114                 break;
115
116         case "0.1.5": // SQL queries for v0.1.5
117                 ADD_SQL("ALTER TABLE `{!_MYSQL_PREFIX!}_user_payouts` ADD target_url LONGBLOB NOT NULL");
118                 ADD_SQL("ALTER TABLE `{!_MYSQL_PREFIX!}_user_payouts` ADD banner_url LONGBLOB NOT NULL");
119                 ADD_SQL("ALTER TABLE `{!_MYSQL_PREFIX!}_user_payouts` ADD link_text VARCHAR(30) NOT NULL DEFAULT ''");
120                 ADD_SQL("ALTER TABLE `{!_MYSQL_PREFIX!}_payout_types` ADD allow_url ENUM('Y','N') NOT NULL DEFAULT 'N'");
121                 break;
122
123         case "0.1.6": // SQL queries for v0.1.6
124                 ADD_SQL("ALTER TABLE `{!_MYSQL_PREFIX!}_payout_types` CHANGE pass_enc pass_enc ENUM('md5','base64','xxx') NOT NULL DEFAULT 'xxx'");
125                 break;
126
127         case "0.1.8": // SQL queries for v0.1.8
128                 // Update notes (these will be set as task text!)
129                 EXT_SET_UPDATE_NOTES("Auflistung der Auszahlungen ausgelagert in Template <em>member_payout.tpl</em>.");
130                 break;
131
132         case "0.1.9": // SQL queries for v0.1.9
133                 // Update notes (these will be set as task text!)
134                 EXT_SET_UPDATE_NOTES("Fehler beseitigt, wenn error_reporting=E_ALL gesetzt ist.");
135                 break;
136
137         case "0.2.0": // SQL queries for v0.2.0
138                 // Update notes (these will be set as task text!)
139                 EXT_SET_UPDATE_NOTES("5 Nachkommastellen implementiert.");
140                 break;
141
142         case "0.2.1": // SQL queries for v0.2.1
143                 ADD_SQL("ALTER TABLE `{!_MYSQL_PREFIX!}_user_payouts` CHANGE payout_total payout_total FLOAT(20,5) UNSIGNED NOT NULL DEFAULT 0.00000");
144                 ADD_SQL("ALTER TABLE `{!_MYSQL_PREFIX!}_payout_types` CHANGE rate rate FLOAT(20,5) UNSIGNED NOT NULL DEFAULT 0.00000");
145
146                 // Update notes (these will be set as task text!)
147                 EXT_SET_UPDATE_NOTES("Problem mit Speicherung der Einstellungen beseitigt.");
148
149         case "0.2.2": // SQL queries for v0.2.2
150                 // Update notes (these will be set as task text!)
151                 EXT_SET_UPDATE_NOTES("Buttons aus Aufgabenauflisten ausgelagert");
152                 break;
153
154         case "0.2.3": // SQL queries for v0.2.3
155                 // Update notes (these will be set as task text!)
156                 EXT_SET_UPDATE_NOTES("Men&uuml;punkte im Gast-/Mitgliedsbereich k&ouml;nnen nicht mehr aufgerufen werden, wenn die Erweiterung deaktiviert ist.");
157                 break;
158
159         case "0.2.4": // SQL queries for v0.2.4
160                 // Update notes (these will be set as task text!)
161                 EXT_SET_UPDATE_NOTES("Ausgabe der Auszahlungsm&ouml;glichkeiten im Mitgliedsbereich repariert.");
162                 break;
163
164         case "0.2.5": // SQL queries for v0.2.5
165                 // Update notes (these will be set as task text!)
166                 EXT_SET_UPDATE_NOTES("Seit <a href=\"#\">Patch 340</a> &uuml;berfl&uuml;ssige HTML-Tags entfernt.");
167                 break;
168
169         case "0.2.6": // SQL queries for v0.2.6
170                 // Update notes (these will be set as task text!)
171                 EXT_SET_UPDATE_NOTES("IP-Nummer und Browserbezeichnung wird in Admin-Mails eingesetzt.");
172                 break;
173
174         case "0.2.7": // SQL queries for v0.2.7
175                 // Update notes (these will be set as task text!)
176                 EXT_SET_UPDATE_NOTES("Link zum Mitgliedsprofil in Funktion <u>ADMIN_USER_PROFILE_LINK()</u> ausgelagert.");
177                 break;
178
179         case "0.2.8": // SQL queries for v0.2.8
180                 // Update notes (these will be set as task text!)
181                 EXT_SET_UPDATE_NOTES("Work-Arount-L&ouml;sung zu tempor&auml;ren Problemen mit der Task-ID eingebaut.");
182                 break;
183
184         case "0.2.9": // SQL queries for v0.2.9
185                 // Update notes (these will be set as task text!)
186                 EXT_SET_UPDATE_NOTES("Nachricht an Admin bei Auszahlungsanfrage wird endlich versendet.");
187                 break;
188
189         case "0.3.0": // SQL queries for v0.3.0
190                 // Update notes (these will be set as task text!)
191                 EXT_SET_UPDATE_NOTES("HTML-Code ausgelagert in Templates und SQL-Anweisungen abgesichert.");
192                 break;
193
194         case "0.3.1": // SQL queries for v0.3.1
195                 // Update notes (these will be set as task text!)
196                 EXT_SET_UPDATE_NOTES("Fehler in Auszahlungsfunktion beseitigt, wenn Umrechnungsrate ungleich 1 eingestellt ist.");
197                 break;
198
199         case "0.3.2": // SQL queries for v0.3.2
200                 // Update notes (these will be set as task text!)
201                 EXT_SET_UPDATE_NOTES("Abspeichern von Einstellungen repariert.");
202                 break;
203
204         case "0.3.3": // SQL queries for v0.3.3
205                 // Update notes (these will be set as task text!)
206                 EXT_SET_UPDATE_NOTES("Vorbereitung auf die neue Mediendaten v0.0.4.");
207                 break;
208
209         case "0.3.4": // SQL queries for v0.3.4
210                 // Update notes (these will be set as task text!)
211                 EXT_SET_UPDATE_NOTES("Anzahl zu &uuml;berweisende {!POINTS!} m&uuml;ssen immer gr&ouml;sser 0 sein, ansonsten bricht das Script mit einer Fehlermeldung an das Mitglied ab.");
212                 break;
213
214         case "0.3.5": // SQL queries for v0.3.5
215                 // Update notes (these will be set as task text!)
216                 EXT_SET_UPDATE_NOTES("Sicherheitsupdate f&uuml;r die Include-Befehle.");
217                 break;
218
219         case "0.3.6": // SQL queries for v0.3.6
220                 // Update notes (these will be set as task text!)
221                 EXT_SET_UPDATE_NOTES("Hash-Erstellung von <strong>md5()</strong> auf bessere Funktion <strong>generateHash()</strong> umgestellt.");
222                 break;
223
224         case "0.3.7": // SQL queries for v0.3.7
225                 ADD_SQL("UPDATE `{!_MYSQL_PREFIX!}_admin_menu` SET title = 'Auszahlungsmanagement' WHERE action = 'payouts' AND (what='' OR `what` IS NULL) LIMIT 1");
226
227                 // Update notes (these will be set as task text!)
228                 EXT_SET_UPDATE_NOTES("Verwaltung nach Management umgestellt.");
229                 break;
230
231         case "0.3.8": // SQL queries for v0.3.8
232                 // Update notes (these will be set as task text!)
233                 EXT_SET_UPDATE_NOTES("Fehlerhinweis bei deaktivierter Erweiterung verbessert.");
234                 break;
235         }
236         break;
237
238 case "modify": // When the extension got modified
239         break;
240
241 case "test": // For testing purposes. For details see file inc/modules/admin/what-extensions.php, arround line 305.
242         break;
243
244 default: // Do stuff when extension is loaded
245         break;
246 }
247
248 //
249 ?>