2 /************************************************************************
3 * Mailer v0.2.1-FINAL Start: 06/25/2013 *
4 * =================== Last change: 06/25/2013 *
6 * -------------------------------------------------------------------- *
7 * File : mode-update.php *
8 * -------------------------------------------------------------------- *
9 * Short description : Double points *
10 * -------------------------------------------------------------------- *
11 * Kurzbeschreibung : Punkte verdoppeln *
12 * -------------------------------------------------------------------- *
13 * Copyright (c) 2003 - 2009 by Roland Haeder *
14 * Copyright (c) 2009 - 2016 by Mailer Developer Team *
15 * For more information visit: http://mxchange.org *
17 * This program is free software; you can redistribute it and/or modify *
18 * it under the terms of the GNU General Public License as published by *
19 * the Free Software Foundation; either version 2 of the License, or *
20 * (at your option) any later version. *
22 * This program is distributed in the hope that it will be useful, *
23 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
24 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
25 * GNU General Public License for more details. *
27 * You should have received a copy of the GNU General Public License *
28 * along with this program; if not, write to the Free Software *
29 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, *
31 ************************************************************************/
33 // Some security stuff...
34 if (!defined('__SECURITY')) {
38 // @TODO Remove double tabs from all lines
39 switch (getCurrentExtensionVersion()) {
40 case '0.0.1': // SQL queries for v0.0.1
41 // Update notes (these will be set as task text!)
42 setExtensionUpdateNotes("Problem mit Mitglieds-Id behoben.");
45 case '0.0.2': // SQL queries for v0.0.2
47 addConfigAddSql('doubler_user', 'FLOAT(20,5) UNSIGNED NOT NULL DEFAULT 0.00000');
49 // Update notes (these will be set as task text!)
50 setExtensionUpdateNotes("Gebühr wird vom Verdoppler-Pott abgezogen.");
53 case '0.0.3': // SQL queries for v0.0.3
54 // Update notes (these will be set as task text!)
55 setExtensionUpdateNotes("Drei SQL-Fehler beseitigt.");
58 case '0.0.4': // SQL queries for v0.0.4
59 // Shall I use the doubler's account to take points from? (Y/N, default=Y)
60 addConfigAddSql('doubler_own', "ENUM('Y','N') NOT NULL DEFAULT 'Y'");
62 // Update notes (these will be set as task text!)
63 setExtensionUpdateNotes("{?POINTS?}-Guthaben des Verdopplers kann optional nicht mit einbezogen werden.");
66 case '0.0.5': // SQL queries for v0.0.5
67 // Update notes (these will be set as task text!)
68 setExtensionUpdateNotes("Counter-Stand und noch zum Verdoppeln übrige {?POINTS?} in Templates eingebunden. Auflistung in Admin-Bereich komplettiert.");
71 case '0.0.6': // SQL queries for v0.0.6
72 addConfigAddSql('doubler_max_sent', 'TINYINT(3) UNSIGNED NOT NULL DEFAULT 1');
73 addConfigAddSql('doubler_group_sent', 'TINYINT(3) UNSIGNED NOT NULL DEFAULT 1');
74 addConfigAddSql('doubler_sent_all', "ENUM('Y','N') NOT NULL DEFAULT 'Y'");
76 // Update notes (these will be set as task text!)
77 setExtensionUpdateNotes("Gebührenabzug wird beim Einzahlen abgezogen (wurde von Auszahlung abgezogen) und maximal bei Auszahlung zu kontrollierende Accounts einstellbar.<br />Template <u>admin_config_doubler.tpl</u> ist überflüssig geworden. Bitte löschen Sie dies!");
80 case '0.0.7': // SQL queries for v0.0.7
81 // Update notes (these will be set as task text!)
82 setExtensionUpdateNotes("Wörter <strong>{?mt_word?}</strong>, <strong>{?mt_word2?}</strong> und <strong>{?mt_word3?}</strong> sind austauschbar.<br /><br />Minus-Guthaben des Verdoppler-Accounts repariert und Mitgliedsmail erweitert mit Transaktionsummer und IP-Nummer.");
85 case '0.0.8': // SQL queries for v0.0.8
86 // Update notes (these will be set as task text!)
87 setExtensionUpdateNotes("Bitte verschieben Sie die doubler-Templates (Ordner: {?PATH?}/templates/".getLanguage()."/html/) in den neuen Order doubler!");
90 case '0.0.9': // SQL queries for v0.0.9
91 // Update notes (these will be set as task text!)
92 setExtensionUpdateNotes("Abspeichern von Einstellungen repariert.");
95 case '0.1.0': // SQL queries for v0.2.1
96 // Update notes (these will be set as task text!)
97 setExtensionUpdateNotes("Vorbereitung auf die neue Mediendaten v0.0.4.");
100 case '0.1.1': // SQL queries for v0.1.1
101 // Update notes (these will be set as task text!)
102 setExtensionUpdateNotes("Zwei SQL-Fehler in <strong>inc/doubler_send.php</strong> beseitigt.");
105 case '0.1.2': // SQL queries for v0.1.2
106 // Update notes (these will be set as task text!)
107 setExtensionUpdateNotes("Sicherheitsupdate für die Include-Befehle.");
110 case '0.1.3': // SQL queries for v0.1.3
111 // Update notes (these will be set as task text!)
112 setExtensionUpdateNotes("De-/Aktivieren des mit dieser Erweiterung verknüpften Modules eingebunden.");
115 case '0.1.4': // SQL queries for v0.1.4
116 addExtensionSql("UPDATE `{?_MYSQL_PREFIX?}_member_menu` SET `action`='extras',`sort`=4 WHERE `what`='doubler' LIMIT 1");
118 // Update notes (these will be set as task text!)
119 setExtensionUpdateNotes("Mitgliedsmenü komplett umgebaut.");
122 case '0.1.5': // SQL queries for v0.1.5
123 // Update notes (these will be set as task text!)
124 setExtensionUpdateNotes("Hash-Erstellung von <strong>md5()</strong> auf bessere Funktion <strong>generateHash()</strong> umgestellt.");
127 case '0.1.6': // SQL queries for v0.1.6
128 // Update notes (these will be set as task text!)
129 setExtensionUpdateNotes("Fehlerhinweis bei deaktivierter Erweiterung verbessert.");
132 case '0.1.7': // SQL queries for v0.1.7
133 addExtensionSql('UPDATE `{?_MYSQL_PREFIX?}_config` SET `doubler_charge`=`doubler_charge`*100 WHERE `config`=0 LIMIT 1');
134 addExtensionSql('UPDATE `{?_MYSQL_PREFIX?}_config` SET `doubler_ref`=`doubler_ref`*100 WHERE `config`=0 LIMIT 1');
136 // Update notes (these will be set as task text!)
137 setExtensionUpdateNotes("Fehlerhinweis bei deaktivierter Erweiterung verbessert.");
140 case '0.1.8': // SQL queries for v0.1.8
141 // Register points data
142 registerExtensionPointsData('doubler_direct', 'points', 'LOCKED', 'DIRECT');
143 registerExtensionPointsData('doubler_reset' , 'points', 'LOCKED', 'DIRECT');
146 setExtensionUpdateNotes("Doppler-Gutschriften werden nun über die Tabelle <strong>{OPEN_CONFIG}_MYSQL_PREFIX{CLOSE_CONFIG}_points_data</strong> verwaltet.");
149 case '0.1.9': // SQL queries for v0.1.9
150 // Total payed out points from your doublers
151 addConfigAddSql('doubler_used', 'FLOAT(20,5) UNSIGNED NOT NULL DEFAULT 0.00000');
154 setExtensionUpdateNotes("Fehlender Konfigurationseintrag <strong>doubler_used</strong> hinzgefügt.");
157 case '0.2.0': // SQL queries for v0.2.0
159 registerFilter(__FILE__, __LINE__, 'config_userid_exclusion_sql', 'EXLCUDE_DOUBLER_USERID', FALSE, TRUE, isExtensionDryRun());
161 // Update notes (these will be set as task text!)
162 setExtensionUpdateNotes("Filter zum Ausschließen des konfigurierten Mitgliedaccounts.");