2 /************************************************************************
3 * MXChange v0.2.1 Start: 10/07/2004 *
4 * ================ Last change: 07/08/2007 *
6 * -------------------------------------------------------------------- *
7 * File : ext-transfer.php *
8 * -------------------------------------------------------------------- *
9 * Short description : Point transfers between members *
10 * -------------------------------------------------------------------- *
11 * Kurzbeschreibung : Punktetransfers zwischen Mitgliedern *
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";
41 $EXT_VERSION = "0.2.9";
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.0.1", "0.0.2", "0.0.3", "0.0.4", "0.0.5", "0.0.6", "0.0.7", "0.0.8", "0.0.9", "0.1.0", "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");
49 switch ($EXT_LOAD_MODE)
51 case "register": // Do stuff when installtion is running
52 // SQL commands to run
53 $SQLs[] = "DROP TABLE IF EXISTS "._MYSQL_PREFIX."_user_transfers_in";
54 $SQLs[] = "DROP TABLE IF EXISTS "._MYSQL_PREFIX."_user_transfers_out";
56 // Transfer from a member
57 $SQLs[] = "CREATE TABLE "._MYSQL_PREFIX."_user_transfers_in (
58 id BIGINT(20) UNSIGNED NOT NULL AUTO_INCREMENT,
59 userid BIGINT(20) UNSIGNED NOT NULL DEFAULT '0',
60 from_uid BIGINT(20) UNSIGNED NOT NULL DEFAULT '0',
61 points BIGINT(20) UNSIGNED NOT NULL DEFAULT '0',
62 reason VARCHAR(255) NOT NULL DEFAULT '',
63 time_trans VARCHAR(14) NOT NULL DEFAULT '0',
64 trans_id VARCHAR(12) NOT NULL DEFAULT '',
70 // Transfers to a member
71 $SQLs[] = "CREATE TABLE "._MYSQL_PREFIX."_user_transfers_out (
72 id BIGINT(20) UNSIGNED NOT NULL AUTO_INCREMENT,
73 userid BIGINT(20) UNSIGNED NOT NULL DEFAULT '0',
74 to_uid BIGINT(20) UNSIGNED NOT NULL DEFAULT '0',
75 points BIGINT(20) UNSIGNED NOT NULL DEFAULT '0',
76 reason VARCHAR(255) NOT NULL DEFAULT '',
77 time_trans VARCHAR(14) NOT NULL DEFAULT '0',
78 trans_id VARCHAR(12) NOT NULL DEFAULT '',
85 $SQLs[] = "INSERT INTO "._MYSQL_PREFIX."_admin_menu (action, what, title, descr, sort) VALUES ('transfer', NULL, '{!POINTS!}-Transfer','Verwalten Sie hier die {!POINTS!}-Transaktionen zwischen Ihren Mitgliedern.', 7)";
86 $SQLs[] = "INSERT INTO "._MYSQL_PREFIX."_admin_menu (action, what, title, descr, sort) VALUES ('transfer','list_transfer','Auflisten','Hier bekommen Sie alle ein- und ausgehende Transaktionen aufgelistet.', 1)";
87 $SQLs[] = "INSERT INTO "._MYSQL_PREFIX."_admin_menu (action, what, title, descr, sort) VALUES ('transfer','config_transfer','Einstellungen','Stellen Sie ein, wie viele Transaktionen aufgelistet werden sollen und wie alt diese werden dürfen. Die evtl. installierte autopurge-Erweiterung kann dann automatisch die veralteten Transktionen löschen.', 2)";
88 $SQLs[] = "INSERT INTO "._MYSQL_PREFIX."_admin_menu (action, what, title, descr, sort) VALUES ('transfer','del_transfer','Manuell löschen','Hier können Sie - abgesehen von der automatischen Löschung - Transaktionen selber löschen. Bitte beachten Sie, dass immer aus- und eingehende Transaktionen gleichzeitig gelöscht werden.', 3)";
91 $SQLs[] = "INSERT INTO "._MYSQL_PREFIX."_member_menu (action, what, title, visible, locked, sort) VALUES ('main','transfer','{!POINTS!}-Transfer','Y','Y', 5)";
94 $SQLs[] = "ALTER TABLE "._MYSQL_PREFIX."_config ADD transfer_max BIGINT(20) UNSIGNED NOT NULL DEFAULT '50'";
95 $SQLs[] = "ALTER TABLE "._MYSQL_PREFIX."_config ADD transfer_age BIGINT(20) UNSIGNED NOT NULL DEFAULT '".(ONE_DAY*28)."'";
96 $SQLs[] = "ALTER TABLE "._MYSQL_PREFIX."_config ADD transfer_timeout BIGINT(20) UNSIGNED NOT NULL DEFAULT '".ONE_DAY."'";
97 $SQLs[] = "ALTER TABLE "._MYSQL_PREFIX."_config ADD transfer_balance BIGINT(20) UNSIGNED NOT NULL DEFAULT '100'";
98 $SQLs[] = "ALTER TABLE "._MYSQL_PREFIX."_config ADD transfer_code BIGINT(20) UNSIGNED NOT NULL DEFAULT '5'";
100 // Add row(s) to user's data
101 $SQLs[] = "ALTER TABLE "._MYSQL_PREFIX."_user_data ADD opt_in ENUM('Y','N') NOT NULL DEFAULT 'N'";
104 case "remove": // Do stuff when removing extension
105 // SQL commands to run
106 $SQLs[] = "DROP TABLE IF EXISTS "._MYSQL_PREFIX."_user_transfers_in";
107 $SQLs[] = "DROP TABLE IF EXISTS "._MYSQL_PREFIX."_user_transfers_out";
108 $SQLs[] = "DELETE LOW_PRIORITY FROM "._MYSQL_PREFIX."_admin_menu WHERE action='transfer' LIMIT 4";
109 $SQLs[] = "DELETE LOW_PRIORITY FROM "._MYSQL_PREFIX."_member_menu WHERE what='transfer' LIMIT 1";
110 $SQLs[] = "ALTER TABLE "._MYSQL_PREFIX."_user_data DROP opt_in";
113 case "activate": // Do stuff when admin activates this extension
114 // SQL commands to run
115 $SQLs[] = "UPDATE "._MYSQL_PREFIX."_member_menu SET visible='Y', locked='N' WHERE what='transfer' LIMIT 1";
118 case "deactivate": // Do stuff when admin deactivates this extension
119 // SQL commands to run
120 $SQLs[] = "UPDATE "._MYSQL_PREFIX."_member_menu SET visible='Y', locked='Y' WHERE what='transfer' LIMIT 1";
123 case "update": // Update an extension
126 case "0.0.2": // SQL queries for v0.0.2
127 // Update notes (these will be set as task text!)
128 $UPDATE_NOTES = "Fehler <FONT class=\"admin_failed\">Warning: Missing argument 2 for create_timestamp_from_selections() in ".PATH."inc/libs/pro_functions.php on line 227</FONT> behoben.";
131 case "0.0.3": // SQL queries for v0.0.3
132 // Update notes (these will be set as task text!)
133 $UPDATE_NOTES = "Überflüssige unset()-Anweisungen aus der what-config_transfer.php entfernt. Dies wird bereits von der eigenen Funktion ADMIN_SAVE_SETTINGS() erledigt.";
136 case "0.0.3": // SQL queries for v0.0.3
137 // Update notes (these will be set as task text!)
138 $UPDATE_NOTES = "Fehlende Abfrage im Mitlieder-Modul, on Erweiterung auch aktiviert ist.";
141 case "0.0.5": // SQL queries for v0.0.5
142 $SQLs[] = "ALTER TABLE "._MYSQL_PREFIX."_config ADD ap_transfer ENUM('Y','N') NOT NULL DEFAULT 'Y'";
144 // Update notes (these will be set as task text!)
145 $UPDATE_NOTES = "Link <I>Auflisten</LI> im Admin-Bereich hatte das eingeloggte Mitglied und nicht den eingeloggten Admin abgefragt. Automatisches Löschen von veraltete Einträgen kann unabhängig von der autopurge-Erweiterung de-/aktiviert werden. Bitte aktualisieren Sie auch die beiden Admin-Templates!";
148 case "0.0.6": // SQL queries for v0.0.6
149 // Update notes (these will be set as task text!)
150 $UPDATE_NOTES = "Wegen des Theme-Supportes hat sich die URL zur CSS-Datei geändert.";
153 case "0.0.7": // SQL queries for v0.0.7
154 // Update notes (these will be set as task text!)
155 $UPDATE_NOTES = "Fehler beseitigt, wenn error_reporting=E_ALL gesetzt ist.";
158 case "0.0.8": // SQL queries for v0.0.8
159 // Update notes (these will be set as task text!)
160 $UPDATE_NOTES = "Problem mit E in Transaktionsnummer beseitigt.";
163 case "0.0.9": // SQL queries for v0.0.9
164 // Update notes (these will be set as task text!)
165 $UPDATE_NOTES = "Problem mit Speicherung der Einstellungen beseitigt.";
168 case "0.1.0": // SQL queries for v0.2.1
169 // Update notes (these will be set as task text!)
170 $UPDATE_NOTES = "Menüpunkte im Gast-/Mitgliedsbereich können nicht mehr aufgerufen werden, wenn die Erweiterung deaktiviert ist.";
173 case "0.1.1": // SQL queries for v0.1.1
174 // Update notes (these will be set as task text!)
175 $UPDATE_NOTES = "Design "Solid-Business" eingebaut.";
178 case "0.1.2": // SQL queries for v0.1.2
179 // Update notes (these will be set as task text!)
180 $UPDATE_NOTES = "Seit <A href=\"#\">Patch 340</A> überflüssige HTML-Tags entfernt.";
183 case "0.1.3": // SQL queries for v0.1.3
184 // Update notes (these will be set as task text!)
185 $UPDATE_NOTES = "IP-Nummer und Browserbezeichnung wird in Admin-Mails eingesetzt.";
188 case "0.1.4": // SQL queries for v0.1.4
189 // Update notes (these will be set as task text!)
190 $UPDATE_NOTES = "Link zum Mitgliedsprofil in Funktion <U>ADMIN_USER_PROFILE_LINK()</U> ausgelagert.";
193 case "0.1.5": // SQL queries for v0.1.5
194 // Update notes (these will be set as task text!)
195 $UPDATE_NOTES = "Template <u>admin_config_transfer_pro.tpl</u> ist überflüssig geworden. Bitte löschen Sie dies!";
198 case "0.1.6": // SQL queries for v0.1.6
199 // Update notes (these will be set as task text!)
200 $UPDATE_NOTES = "Wörter <STRONG>Mailtausch</STRONG>, <STRONG>Mailtausches</STRONG> und <STRONG>Mailtauscher</STRONG> sind austauschbar.";
203 case "0.1.7": // SQL queries for v0.1.7
204 // Update notes (these will be set as task text!)
205 $UPDATE_NOTES = "Wort <STRONG>Punkte</STRONG> dynamisiert.";
208 case "0.1.8": // SQL queries for v0.1.8
209 // Update notes (these will be set as task text!)
210 $UPDATE_NOTES = "HTML-Code ausgelagert in Templates und SQL-Anweisungen abgesichert.";
213 case "0.1.9": // SQL queries for v0.1.9
214 // Update notes (these will be set as task text!)
215 $UPDATE_NOTES = "Parser-Error im Mitgliedsbereich beseitigt.";
218 case "0.2.0": // SQL queries for v0.2.0
219 // Update notes (these will be set as task text!)
220 $UPDATE_NOTES = "Abspeichern von Einstellungen repariert.";
223 case "0.2.1": // SQL queries for v0.2.1
224 // Update notes (these will be set as task text!)
225 $UPDATE_NOTES = "Durchführung des Transfers korregiert.";
228 case "0.2.2": // SQL queries for v0.2.2
229 // Update notes (these will be set as task text!)
230 $UPDATE_NOTES = "Sicherheitsupdate für die Include-Befehle.";
233 case "0.2.3": // SQL queries for v0.2.3
234 $SQLs[] = "INSERT INTO "._MYSQL_PREFIX."_admin_menu_las (la_id, la_action, la_what) VALUES ('member', NULL, 'list_transfer')";
235 $SQLs[] = "INSERT INTO "._MYSQL_PREFIX."_admin_menu_las (la_id, la_action, la_what) VALUES ('member', NULL, 'del_transfer')";
236 $SQLs[] = "INSERT INTO "._MYSQL_PREFIX."_admin_menu_las (la_id, la_action, la_what) VALUES ('config', NULL, 'config_transfer')";
238 // Depends on sql_patches (or you have to execute these both SQL statements by phpMyAdmin
239 $EXT_UPDATE_DEPENDS = "sql_patches";
241 // Update notes (these will be set as task text!)
242 $UPDATE_NOTES = "Erweiterung in's neue Menüsystem integriert.";
245 case "0.2.4": // SQL queries for v0.2.4
246 // Update notes (these will be set as task text!)
247 $UPDATE_NOTES = "<STRONG>Touring-Code wiederholen</STRONG> nach <STRONG>Touring-Code eingeben</STRONG> hin geändert.";
250 case "0.2.5": // SQL queries for v0.2.5
251 $SQLs[] = "UPDATE "._MYSQL_PREFIX."_member_menu SET action='extras', sort='5' WHERE what='transfer' LIMIT 1";
253 // Update notes (these will be set as task text!)
254 $UPDATE_NOTES = "Mitgliedsmenü komplett geändert.";
257 case "0.2.6": // SQL queries for v0.2.6
258 // Update notes (these will be set as task text!)
259 $UPDATE_NOTES = "Hash-Erstellung von <STRONG>md5()</STRONG> auf bessere Funktion <STRONG>generateHash()</STRONG> umgestellt.";
262 case "0.2.7": // SQL queries for v0.2.7
263 // Update notes (these will be set as task text!)
264 $UPDATE_NOTES = "Die ".POINTS." können nun wieder wie gewohnt transferiert werden. Der Grund für <em>".TRANSFER_INVALID_PASSWORD."</em> war, dass der Cookie-Hash ein anderer ist, als der in der Datenbank... :-/";
267 case "0.2.8": // SQL queries for v0.2.8
268 // Update notes (these will be set as task text!)
269 $UPDATE_NOTES = "Fehlermeldung <em>Notice: Undefined index: to_uid in ".PATH."/inc/modules/member/what-transfer.php on line 301</em> gefixt. Danke an <a href=\"http://forum.mxchange.org/profile-8.html\" target=\"_blank\" title=\"Forumprofil von Piter01\">Piter01</a>.";
272 case "0.2.9": // SQL queries for v0.2.9
273 // Update notes (these will be set as task text!)
274 $UPDATE_NOTES = "Fehlerhinweis bei deaktivierter Erweiterung verbessert.";
279 default: // Do stuff when extension is loaded
280 if ((isBooleanConstantAndTrue('__DAILY_RESET')) && ($_CONFIG['ap_transfer'] == "Y")) {
281 // Automatically remove outdated or not displayed transactions
282 TRANSFER_AUTPPURGE($_CONFIG['transfer_max'], $_CONFIG['transfer_age']);
287 // Language file prefix
288 $EXT_LANG_PREFIX = "transfer";
290 // Extension is always active?
291 $EXT_ALWAYS_ACTIVE = "N";