2 /************************************************************************
3 * MXChange v0.2.1 Start: 04/11/2004 *
4 * ================ Last change: 11/15/2004 *
6 * -------------------------------------------------------------------- *
7 * File : ext-payout.php *
8 * -------------------------------------------------------------------- *
9 * Short description : Payout extension *
10 * -------------------------------------------------------------------- *
11 * Kurzbeschreibung : Auszahlung-Erweiterung *
12 * -------------------------------------------------------------------- *
14 * -------------------------------------------------------------------- *
15 * Copyright (c) 2003 - 2008 by Roland Haeder *
16 * For more information visit: http://www.mxchange.org *
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. *
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. *
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, *
32 ************************************************************************/
34 // Some security stuff...
35 if (!defined('__SECURITY')) {
36 $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
40 // Version of this extension
41 $EXT_VERSION = "0.3.8";
43 // Auto-set extension version
44 if (empty($EXT_VER)) $EXT_VER = $EXT_VERSION;
46 // Version history array (add more with , "0.1" and so on)
47 $EXT_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");
49 switch ($EXT_LOAD_MODE)
51 case "register": // Do stuff when installation is running (modules.php?module=admin&action=login is called)
52 // SQL commands to run
53 $SQLs[] = "DROP TABLE IF EXISTS `{!_MYSQL_PREFIX!}_user_payouts`";
54 $SQLs[] = "CREATE TABLE `{!_MYSQL_PREFIX!}_user_payouts` (
55 id BIGINT(20) UNSIGNED NOT NULL AUTO_INCREMENT,
56 userid BIGINT(20) UNSIGNED NOT NULL DEFAULT 0,
57 payout_total FLOAT(22,3) UNSIGNED NOT NULL DEFAULT '0.000',
58 target_account VARCHAR(255) NOT NULL DEFAULT '',
59 target_bank VARCHAR(255) NOT NULL DEFAULT '',
60 payout_id BIGINT(20) UNSIGNED NOT NULL DEFAULT 0,
61 payout_timestamp VARCHAR(10) NOT NULL DEFAULT 0,
62 status ENUM('NEW','ACCEPTED','REJECTED') NOT NULL DEFAULT 'NEW',
67 $SQLs[] = "DROP TABLE IF EXISTS `{!_MYSQL_PREFIX!}_payout_types`";
68 $SQLs[] = "CREATE TABLE `{!_MYSQL_PREFIX!}_payout_types` (
69 id BIGINT(20) UNSIGNED NOT NULL AUTO_INCREMENT,
70 type VARCHAR(255) NOT NULL DEFAULT '',
71 rate FLOAT(22,3) UNSIGNED NOT NULL DEFAULT '0.000',
72 min_points BIGINT(20) UNSIGNED NOT NULL DEFAULT 0,
75 $SQLs[] = "INSERT INTO `{!_MYSQL_PREFIX!}_admin_menu` (`action`,`what`,`title`,`descr`,`sort`) VALUES ('setup','config_payouts','Auszahlungen','Auszahlungsarten einstellen, neu anlegen oder löschen.','15')";
76 $SQLs[] = "INSERT INTO `{!_MYSQL_PREFIX!}_admin_menu` (`action`,`what`,`title`,`descr`,`sort`) VALUES ('payouts','list_payouts','Anfragen auflisten','Listet alle Auszahlungsanfragen Ihrer Mitglieder auf.','16')";
77 $SQLs[] = "INSERT INTO `{!_MYSQL_PREFIX!}_member_menu` (`action`,`what`,`title`,`visible`,`locked`,`sort`) VALUES ('main','payout','Auszahlungen','N','N','11')";
80 case "remove": // Do stuff when removing extension
81 // SQL commands to run
82 $SQLs[] = "DROP TABLE IF EXISTS `{!_MYSQL_PREFIX!}_user_payouts`";
83 $SQLs[] = "DROP TABLE IF EXISTS `{!_MYSQL_PREFIX!}_payout_types`";
84 $SQLs[] = "DELETE LOW_PRIORITY FROM `{!_MYSQL_PREFIX!}_admin_menu` WHERE `action`='payouts'";
85 $SQLs[] = "DELETE LOW_PRIORITY FROM `{!_MYSQL_PREFIX!}_member_menu` WHERE `what`='payout' LIMIT 1";
88 case "activate": // Do stuff when admin activates this extension
89 // SQL commands to run
90 $SQLs[] = "UPDATE `{!_MYSQL_PREFIX!}_member_menu` SET `visible`='Y', `locked`='N' WHERE `what`='payout' LIMIT 1";
93 case "deactivate": // Do stuff when admin deactivates this extension
94 // SQL commands to run
95 $SQLs[] = "UPDATE `{!_MYSQL_PREFIX!}_member_menu` SET `visible`='N', `locked`='Y' WHERE `what`='payout' LIMIT 1";
98 case "update": // Update an extension
101 case "0.1.2": // SQL queries for v0.1.2
102 $SQLs[] = "INSERT INTO `{!_MYSQL_PREFIX!}_admin_menu` (`action`,`what`,`title`,`descr`,`sort`) VALUES ('payouts', NULL, 'Auszahlungsmanagement','Management der Auszahlungsarten.','8')";
103 $SQLs[] = "UPDATE `{!_MYSQL_PREFIX!}_admin_menu` SET `action`='payouts', `title`='Einstellungen' WHERE `action`='setup' AND `what`='config_payouts' LIMIT 1";
106 case "0.1.3": // SQL queries for v0.1.3
107 $SQLs[] = "ALTER TABLE `{!_MYSQL_PREFIX!}_payout_types` ADD from_account VARCHAR(255) NOT NULL DEFAULT ''";
108 $SQLs[] = "ALTER TABLE `{!_MYSQL_PREFIX!}_payout_types` ADD from_pass VARCHAR(255) NOT NULL DEFAULT ''";
109 $SQLs[] = "ALTER TABLE `{!_MYSQL_PREFIX!}_payout_types` ADD engine_url VARCHAR(255) NOT NULL DEFAULT ''";
110 $SQLs[] = "ALTER TABLE `{!_MYSQL_PREFIX!}_payout_types` ADD engine_ret_ok VARCHAR(255) NOT NULL DEFAULT ''";
111 $SQLs[] = "ALTER TABLE `{!_MYSQL_PREFIX!}_payout_types` ADD engine_ret_failed VARCHAR(255) NOT NULL DEFAULT ''";
112 $SQLs[] = "ALTER TABLE `{!_MYSQL_PREFIX!}_payout_types` ADD pass_enc ENUM('md5','base64','none') NOT NULL DEFAULT 'md5'";
115 case "0.1.4": // SQL queries for v0.1.4
116 $SQLs[] = "ALTER TABLE `{!_MYSQL_PREFIX!}_user_payouts` ADD password VARCHAR(255) NOT NULL DEFAULT ''";
119 case "0.1.5": // SQL queries for v0.1.5
120 $SQLs[] = "ALTER TABLE `{!_MYSQL_PREFIX!}_user_payouts` ADD target_url LONGBLOB NOT NULL";
121 $SQLs[] = "ALTER TABLE `{!_MYSQL_PREFIX!}_user_payouts` ADD banner_url LONGBLOB NOT NULL";
122 $SQLs[] = "ALTER TABLE `{!_MYSQL_PREFIX!}_user_payouts` ADD link_text VARCHAR(30) NOT NULL DEFAULT ''";
123 $SQLs[] = "ALTER TABLE `{!_MYSQL_PREFIX!}_payout_types` ADD allow_url ENUM('Y','N') NOT NULL DEFAULT 'N'";
126 case "0.1.6": // SQL queries for v0.1.6
127 $SQLs[] = "ALTER TABLE `{!_MYSQL_PREFIX!}_payout_types` CHANGE pass_enc pass_enc ENUM('md5','base64','xxx') NOT NULL DEFAULT 'xxx'";
130 case "0.1.8": // SQL queries for v0.1.8
131 // Update notes (these will be set as task text!)
132 $UPDATE_NOTES = "Auflistung der Auszahlungen ausgelagert in Template <em>member_payout.tpl</em>.";
135 case "0.1.9": // SQL queries for v0.1.9
136 // Update notes (these will be set as task text!)
137 $UPDATE_NOTES = "Fehler beseitigt, wenn error_reporting=E_ALL gesetzt ist.";
140 case "0.2.0": // SQL queries for v0.2.0
141 // Update notes (these will be set as task text!)
142 $UPDATE_NOTES = "5 Nachkommastellen implementiert.";
145 case "0.2.1": // SQL queries for v0.2.1
146 $SQLs[] = "ALTER TABLE `{!_MYSQL_PREFIX!}_user_payouts` CHANGE payout_total payout_total FLOAT(20,5) UNSIGNED NOT NULL DEFAULT 0.00000";
147 $SQLs[] = "ALTER TABLE `{!_MYSQL_PREFIX!}_payout_types` CHANGE rate rate FLOAT(20,5) UNSIGNED NOT NULL DEFAULT 0.00000";
149 // Update notes (these will be set as task text!)
150 $UPDATE_NOTES = "Problem mit Speicherung der Einstellungen beseitigt.";
152 case "0.2.2": // SQL queries for v0.2.2
153 // Update notes (these will be set as task text!)
154 $UPDATE_NOTES = "Buttons aus Aufgabenauflisten ausgelagert";
157 case "0.2.3": // SQL queries for v0.2.3
158 // Update notes (these will be set as task text!)
159 $UPDATE_NOTES = "Menüpunkte im Gast-/Mitgliedsbereich können nicht mehr aufgerufen werden, wenn die Erweiterung deaktiviert ist.";
162 case "0.2.4": // SQL queries for v0.2.4
163 // Update notes (these will be set as task text!)
164 $UPDATE_NOTES = "Ausgabe der Auszahlungsmöglichkeiten im Mitgliedsbereich repariert.";
167 case "0.2.5": // SQL queries for v0.2.5
168 // Update notes (these will be set as task text!)
169 $UPDATE_NOTES = "Seit <a href=\"#\">Patch 340</a> überflüssige HTML-Tags entfernt.";
172 case "0.2.6": // SQL queries for v0.2.6
173 // Update notes (these will be set as task text!)
174 $UPDATE_NOTES = "IP-Nummer und Browserbezeichnung wird in Admin-Mails eingesetzt.";
177 case "0.2.7": // SQL queries for v0.2.7
178 // Update notes (these will be set as task text!)
179 $UPDATE_NOTES = "Link zum Mitgliedsprofil in Funktion <u>ADMIN_USER_PROFILE_LINK()</u> ausgelagert.";
182 case "0.2.8": // SQL queries for v0.2.8
183 // Update notes (these will be set as task text!)
184 $UPDATE_NOTES = "Work-Arount-Lösung zu temporären Problemen mit der Task-ID eingebaut.";
187 case "0.2.9": // SQL queries for v0.2.9
188 // Update notes (these will be set as task text!)
189 $UPDATE_NOTES = "Nachricht an Admin bei Auszahlungsanfrage wird endlich versendet.";
192 case "0.3.0": // SQL queries for v0.3.0
193 // Update notes (these will be set as task text!)
194 $UPDATE_NOTES = "HTML-Code ausgelagert in Templates und SQL-Anweisungen abgesichert.";
197 case "0.3.1": // SQL queries for v0.3.1
198 // Update notes (these will be set as task text!)
199 $UPDATE_NOTES = "Fehler in Auszahlungsfunktion beseitigt, wenn Umrechnungsrate ungleich 1 eingestellt ist.";
202 case "0.3.2": // SQL queries for v0.3.2
203 // Update notes (these will be set as task text!)
204 $UPDATE_NOTES = "Abspeichern von Einstellungen repariert.";
207 case "0.3.3": // SQL queries for v0.3.3
208 // Update notes (these will be set as task text!)
209 $UPDATE_NOTES = "Vorbereitung auf die neue Mediendaten v0.0.4.";
212 case "0.3.4": // SQL queries for v0.3.4
213 // Update notes (these will be set as task text!)
214 $UPDATE_NOTES = "Anzahl zu überweisende {!POINTS!} müssen immer grösser 0 sein, ansonsten bricht das Script mit einer Fehlermeldung an das Mitglied ab.";
217 case "0.3.5": // SQL queries for v0.3.5
218 // Update notes (these will be set as task text!)
219 $UPDATE_NOTES = "Sicherheitsupdate für die Include-Befehle.";
222 case "0.3.6": // SQL queries for v0.3.6
223 // Update notes (these will be set as task text!)
224 $UPDATE_NOTES = "Hash-Erstellung von <strong>md5()</strong> auf bessere Funktion <strong>generateHash()</strong> umgestellt.";
227 case "0.3.7": // SQL queries for v0.3.7
228 $SQLs[] = "UPDATE `{!_MYSQL_PREFIX!}_admin_menu` SET title = 'Auszahlungsmanagement' WHERE action = 'payouts' AND (what='' OR `what` IS NULL) LIMIT 1";
230 // Update notes (these will be set as task text!)
231 $UPDATE_NOTES = "Verwaltung nach Management umgestellt.";
234 case "0.3.8": // SQL queries for v0.3.8
235 // Update notes (these will be set as task text!)
236 $UPDATE_NOTES = "Fehlerhinweis bei deaktivierter Erweiterung verbessert.";
241 case "test": // For testing purposes. For details see file inc/modules/admin/what-extensions.php, arround line 305.
244 default: // Do stuff when extension is loaded