]> git.mxchange.org Git - mailer.git/blobdiff - 0.2.1/inc/extensions/ext-doubler.php
win32 to unix line delimiters changed
[mailer.git] / 0.2.1 / inc / extensions / ext-doubler.php
index eb557508657c7c9a274b87c328a57f06a1e1afa9..469547623e427a0c89c9366cbe433bff4011a0ab 100644 (file)
-<?php\r
-/************************************************************************\r
- * MXChange v0.2.1                                    Start: 02/03/2005 *\r
- * ================                             Last change: 02/03/2005 *\r
- *                                                                      *\r
- * -------------------------------------------------------------------- *\r
- * File              : ext-doubler.php                                  *\r
- * -------------------------------------------------------------------- *\r
- * Short description : Double points                                    *\r
- * -------------------------------------------------------------------- *\r
- * Kurzbeschreibung  : Punkte verdoppeln                                *\r
- * -------------------------------------------------------------------- *\r
- *                                                                      *\r
- * -------------------------------------------------------------------- *\r
- * Copyright (c) 2003 - 2008 by Roland Haeder                           *\r
- * For more information visit: http://www.mxchange.org                  *\r
- *                                                                      *\r
- * This program is free software; you can redistribute it and/or modify *\r
- * it under the terms of the GNU General Public License as published by *\r
- * the Free Software Foundation; either version 2 of the License, or    *\r
- * (at your option) any later version.                                  *\r
- *                                                                      *\r
- * This program is distributed in the hope that it will be useful,      *\r
- * but WITHOUT ANY WARRANTY; without even the implied warranty of       *\r
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *\r
- * GNU General Public License for more details.                         *\r
- *                                                                      *\r
- * You should have received a copy of the GNU General Public License    *\r
- * along with this program; if not, write to the Free Software          *\r
- * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *\r
- * MA  02110-1301  USA                                                  *\r
- ************************************************************************/\r
-\r
-// Some security stuff...\r
-if ((ereg(basename(__FILE__), $_SERVER['PHP_SELF'])))\r
-{\r
-       $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";\r
-       require($INC);\r
-}\r
-\r
-// Version number\r
-$EXT_VERSION = "0.1.6";\r
-\r
-// Auto-set extension version\r
-if (empty($EXT_VER)) $EXT_VER = $EXT_VERSION;\r
-\r
-// Version history array (add more with , "0.1" and so on)\r
-$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");\r
-\r
-switch ($EXT_LOAD_MODE)\r
-{\r
-case "register": // Do stuff when installtion is running (modules.php?module=admin&action=login is called)\r
-       // Doubler table\r
-       $SQLs[] = "DROP TABLE IF EXISTS "._MYSQL_PREFIX."_doubler";\r
-       $SQLs[] = "CREATE TABLE "._MYSQL_PREFIX."_doubler (\r
-id bigint(20) not null auto_increment,\r
-userid bigint(20) not null default '0',\r
-refid bigint(20) not null default '0',\r
-points double(20,5) not null default '0.00000',\r
-remote_ip varchar(15) not null default '0.0.0.0',\r
-timemark varchar(10) not null default '',\r
-completed enum('Y', 'N') not null default 'N',\r
-is_ref enum('Y', 'N') not null default 'N',\r
-KEY(refid),\r
-KEY(userid),\r
-PRIMARY KEY(id)\r
-)TYPE=MYISAM";\r
-\r
-       //\r
-       // --- SETTINGS ---\r
-       //\r
-       // Minimum points to double\r
-       $SQLs[] = "ALTER TABLE "._MYSQL_PREFIX."_config ADD doubler_min double(20,5) not null default '100.00000'";\r
-       // Maximum points to double\r
-       $SQLs[] = "ALTER TABLE "._MYSQL_PREFIX."_config ADD doubler_max double(20,5) not null default '10000.00000'";\r
-       // Points left on users account after doubling\r
-       $SQLs[] = "ALTER TABLE "._MYSQL_PREFIX."_config ADD doubler_left bigint(20) not null default '1000'";\r
-       // Charge for doubling points which goes to the webmaster (shreddered in fact!)\r
-       $SQLs[] = "ALTER TABLE "._MYSQL_PREFIX."_config ADD doubler_charge float(7,3) not null default '0.030'";\r
-       // Referral percents\r
-       $SQLs[] = "ALTER TABLE "._MYSQL_PREFIX."_config ADD doubler_ref float(7,3) not null default '0.020'";\r
-       // Shall I use the jackpot to take points from? (Y/N, default=Y)\r
-       $SQLs[] = "ALTER TABLE "._MYSQL_PREFIX."_config ADD doubler_jackpot enum('Y', 'N') not null default 'Y'";\r
-       // A user account to take points from (default: 0->none)\r
-       $SQLs[] = "ALTER TABLE "._MYSQL_PREFIX."_config ADD doubler_uid bigint(20) not null default '0'";\r
-       // Total payed out points from your doublers\r
-       $SQLs[] = "ALTER TABLE "._MYSQL_PREFIX."_config ADD doubler_points double(20,5) not null default '0.00000'";\r
-       // Sending mode of mails (immediately/daily reset)\r
-       // --> This also means who fast the doubled points will be payed out!\r
-       $SQLs[] = "ALTER TABLE "._MYSQL_PREFIX."_config ADD doubler_send_mode enum('DIRECT', 'RESET') not null default 'DIRECT'";\r
-       // Timeout for entries to be purged (default: one week)\r
-       $SQLs[] = "ALTER TABLE "._MYSQL_PREFIX."_config ADD doubler_timeout bigint(20) not null default '".(60*60*24*7)."'";\r
-       // Number of newest entries to display\r
-       $SQLs[] = "ALTER TABLE "._MYSQL_PREFIX."_config ADD doubler_display_new tinyint(3) not null default '10'";\r
-       // Number of entries which will be payed out soon\r
-       $SQLs[] = "ALTER TABLE "._MYSQL_PREFIX."_config ADD doubler_display_pay tinyint(3) not null default '10'";\r
-       // Number of entries which are already payed out\r
-       $SQLs[] = "ALTER TABLE "._MYSQL_PREFIX."_config ADD doubler_display_old tinyint(3) not null default '10'";\r
-       // Points used by every member\r
-       $SQLs[] = "ALTER TABLE "._MYSQL_PREFIX."_user_data ADD doubler_points double(20,5) not null default '0.00000'";\r
-       // Counter for usage of the doubler\r
-       $SQLs[] = "ALTER TABLE "._MYSQL_PREFIX."_config ADD doubler_counter bigint(20) not null default '0'";\r
-\r
-       //\r
-       // --- MENU SYSTEMS ---\r
-       //\r
-       // Admin menu\r
-       $SQLs[] = "INSERT INTO "._MYSQL_PREFIX."_admin_menu (action, what, title, descr, sort) VALUES ('doubler', '', '{!POINTS!}-Verdoppler', 'Einstellungen und Eintr&auml;ge auflisten.', 4)";\r
-       $SQLs[] = "INSERT INTO "._MYSQL_PREFIX."_admin_menu (action, what, title, descr, sort) VALUES ('doubler', 'list_doubler', 'Auflisten', 'Eintr&auml;ge aus der Verdiensttabelle auflisten', 1)";\r
-       $SQLs[] = "INSERT INTO "._MYSQL_PREFIX."_admin_menu (action, what, title, descr, sort) VALUES ('doubler', 'config_doubler', 'Einstellungen', 'Prozentuale Geb&uuml;hr usw. einstellen.', 2)";\r
-\r
-       // Guest menu (informations / default doubler link)\r
-       $SQLs[] = "INSERT INTO "._MYSQL_PREFIX."_guest_menu (action, what, title, sort, visible, locked) VALUES ('main', 'doubler', 'Verdoppeln!', 3, 'Y', 'Y')";\r
-\r
-       // Member menu\r
-       $SQLs[] = "INSERT INTO "._MYSQL_PREFIX."_member_menu (action, what, title, visible, locked, sort) VALUES ('main', 'doubler', 'Verdoppeln!', 'Y', 'Y', 7)";\r
-       break;\r
-\r
-case "remove": // Do stuff when removing extension\r
-       // SQL commands to run\r
-       $SQLs[] = "DROP TABLE IF EXISTS "._MYSQL_PREFIX."_doubler";\r
-       $SQLs[] = "DELETE LOW_PRIORITY FROM "._MYSQL_PREFIX."_admin_menu WHERE action='doubler' LIMIT 3";\r
-       $SQLs[] = "DELETE LOW_PRIORITY FROM "._MYSQL_PREFIX."_guest_menu WHERE what='doubler' LIMIT 1";\r
-       $SQLs[] = "DELETE LOW_PRIORITY FROM "._MYSQL_PREFIX."_member_menu WHERE what='doubler' LIMIT 1";\r
-       break;\r
-\r
-case "activate": // Do stuff when admin activates this extension\r
-       // SQL commands to run\r
-       $SQLs[] = "UPDATE "._MYSQL_PREFIX."_member_menu SET visible='Y', locked='N' WHERE what='doubler' LIMIT 1";\r
-       $SQLs[] = "UPDATE "._MYSQL_PREFIX."_guest_menu SET visible='Y', locked='N' WHERE what='doubler' LIMIT 1";\r
-       $SQLs[] = "UPDATE "._MYSQL_PREFIX."_mod_reg SET locked='N', hidden='N', admin_only='N', mem_only='N' WHERE module='doubler' LIMIT 1";\r
-       break;\r
-\r
-case "deactivate": // Do stuff when admin deactivates this extension\r
-       // SQL commands to run\r
-       $SQLs[] = "UPDATE "._MYSQL_PREFIX."_member_menu SET visible='Y', locked='Y' WHERE what='doubler' LIMIT 1";\r
-       $SQLs[] = "UPDATE "._MYSQL_PREFIX."_guest_menu SET visible='Y', locked='Y' WHERE what='doubler' LIMIT 1";\r
-       $SQLs[] = "UPDATE "._MYSQL_PREFIX."_mod_reg SET locked='Y' WHERE module='doubler' LIMIT 1";\r
-       break;\r
-\r
-case "update": // Update an extension\r
-       switch ($EXT_VER)\r
-       {\r
-       case "0.0.1": // SQL queries for v0.0.1\r
-               // Update notes (these will be set as task text!)\r
-               $UPDATE_NOTES = "Problem mit User-ID behoben!";\r
-               break;\r
-\r
-       case "0.0.2": // SQL queries for v0.0.2\r
-               // Total used points\r
-               $SQLs[] = "ALTER TABLE "._MYSQL_PREFIX."_config ADD doubler_used double(20,5) not null default '0.00000'";\r
-\r
-               // Update notes (these will be set as task text!)\r
-               $UPDATE_NOTES = "Geb&uuml;hr wird vom Verdoppler-Pott abgezogen.";\r
-               break;\r
-\r
-       case "0.0.3": // SQL queries for v0.0.3\r
-               // Update notes (these will be set as task text!)\r
-               $UPDATE_NOTES = "Drei SQL-Fehler beseitigt.";\r
-               break;\r
-\r
-       case "0.0.4": // SQL queries for v0.0.4\r
-               // Shall I use the doubler's account to take points from? (Y/N, default=Y)\r
-               $SQLs[] = "ALTER TABLE "._MYSQL_PREFIX."_config ADD doubler_own enum('Y', 'N') not null default 'Y'";\r
-\r
-               // Update notes (these will be set as task text!)\r
-               $UPDATE_NOTES = POINTS."-Guthaben des Verdopplers kann optional nicht mit einbezogen werden.";\r
-               break;\r
-\r
-       case "0.0.5": // SQL queries for v0.0.5\r
-               // Update notes (these will be set as task text!)\r
-               $UPDATE_NOTES = "Counter-Stand und noch zum Verdoppeln &uuml;brige {!POINTS!} in Templates eingebunden. Auflistung in Admin-Bereich komplettiert.";\r
-               break;\r
-\r
-       case "0.0.6": // SQL queries for v0.0.6\r
-               $SQLs[] = "UPDATE "._MYSQL_PREFIX."_config SET doubler_used=doubler_used+(SUM(d.points)*c.doubler_charge)\r
-FROM "._MYSQL_PREFIX."_doubler AS d, "._MYSQL_PREFIX."_config AS c\r
-WHERE d.completed='N'";\r
-               $SQLs[] = "ALTER TABLE "._MYSQL_PREFIX."_config ADD doubler_max_sent tinyint(4) not null default '1'";\r
-               $SQLs[] = "ALTER TABLE "._MYSQL_PREFIX."_config ADD doubler_group_sent tinyint(4) not null default '1'";\r
-               $SQLs[] = "ALTER TABLE "._MYSQL_PREFIX."_config ADD doubler_sent_all enum('Y', 'N') not null default 'Y'";\r
-\r
-               // Update notes (these will be set as task text!)\r
-               $UPDATE_NOTES = "Geb&uuml;hrenabzug wird beim Einzahlen abgezogen (wurde von Auszahlung abgezogen) und maximal bei Auszahlung zu kontrollierende Accounts einstellbar.<br>Template <u>admin_config_doubler_pro.tpl</u> ist &uuml;berfl&uuml;ssig geworden. Bitte l&ouml;schen Sie dies!";\r
-               break;\r
-\r
-       case "0.0.7": // SQL queries for v0.0.7\r
-               // Update notes (these will be set as task text!)\r
-               $UPDATE_NOTES = "W&ouml;rter <STRONG>Mailtausch</STRONG>, <STRONG>Mailtausches</STRONG> und <STRONG>Mailtauscher</STRONG> sind austauschbar.<BR><BR>Minus-Guthaben des Verdoppler-Accounts repariert und Mitgliedsmail erweitert mit Transaktionsummer und IP-Nummer.";\r
-               break;\r
-\r
-       case "0.0.8": // SQL queries for v0.0.8\r
-               // Update notes (these will be set as task text!)\r
-               $UPDATE_NOTES = "Bitte verschieben Sie die doubler-Templates (Ordner: ".PATH."/templates/".GET_LANGUAGE()."/html/) in den neuen Order doubler!";\r
-               break;\r
-\r
-       case "0.0.9": // SQL queries for v0.0.9\r
-               // Update notes (these will be set as task text!)\r
-               $UPDATE_NOTES = "Abspeichern von Einstellungen repariert.";\r
-               break;\r
-\r
-       case "0.1.0": // SQL queries for v0.1.0\r
-               // Update notes (these will be set as task text!)\r
-               $UPDATE_NOTES = "Vorbereitung auf die neue Mediendaten v0.0.4.";\r
-               break;\r
-\r
-       case "0.1.1": // SQL queries for v0.1.1\r
-               // Update notes (these will be set as task text!)\r
-               $UPDATE_NOTES = "Zwei SQL-Fehler in <STRONG>inc/doubler_send.php</STRONG> beseitigt.";\r
-               break;\r
-\r
-       case "0.1.2": // SQL queries for v0.1.2\r
-               // Update notes (these will be set as task text!)\r
-               $UPDATE_NOTES = "Sicherheitsupdate f&uuml;r die Include-Befehle.";\r
-               break;\r
-\r
-       case "0.1.3": // SQL queries for v0.1.3\r
-               // Update notes (these will be set as task text!)\r
-               $UPDATE_NOTES = "De-/Aktivieren des mit dieser Erweiterung verkn&uuml;pften Modules eingebunden.";\r
-               break;\r
-\r
-       case "0.1.4": // SQL queries for v0.1.4\r
-               $SQLs[] = "UPDATE "._MYSQL_PREFIX."_member_menu SET action='extras', sort='4' WHERE what='doubler' LIMIT 1";\r
-\r
-               // Update notes (these will be set as task text!)\r
-               $UPDATE_NOTES = "Mitgliedsmen&uuml; komplett umgebaut.";\r
-               break;\r
-\r
-       case "0.1.5": // SQL queries for v0.1.5\r
-               // Update notes (these will be set as task text!)\r
-               $UPDATE_NOTES = "Hash-Erstellung von <STRONG>md5()</STRONG> auf bessere Funktion <STRONG>generateHash()</STRONG> umgestellt.";\r
-               break;\r
-\r
-       case "0.1.6": // SQL queries for v0.1.6\r
-               // Update notes (these will be set as task text!)\r
-               $UPDATE_NOTES = "Fehlerhinweis bei deaktivierter Erweiterung verbessert.";\r
-               break;\r
-       }\r
-       break;\r
-\r
-default: // Do stuff when extension is loaded\r
-       $DUMMY = LOAD_CONFIG("0");\r
-       $CONFIG['doubler_charge']      = $DUMMY['doubler_charge'];\r
-       $CONFIG['doubler_jackpot']     = $DUMMY['doubler_jackpot'];\r
-       $CONFIG['doubler_own']         = $DUMMY['doubler_own'];\r
-       $CONFIG['doubler_uid']         = $DUMMY['doubler_uid'];\r
-       $CONFIG['doubler_points']      = $DUMMY['doubler_points'];\r
-       $CONFIG['doubler_used']        = $DUMMY['doubler_used'];\r
-       $CONFIG['doubler_send_mode']   = $DUMMY['doubler_send_mode'];\r
-       $CONFIG['doubler_timeout']     = $DUMMY['doubler_timeout'];\r
-       $CONFIG['doubler_display_new'] = $DUMMY['doubler_display_new'];\r
-       $CONFIG['doubler_display_pay'] = $DUMMY['doubler_display_pay'];\r
-       $CONFIG['doubler_display_old'] = $DUMMY['doubler_display_old'];\r
-       $CONFIG['doubler_ref']         = $DUMMY['doubler_ref'];\r
-       $CONFIG['doubler_min']         = $DUMMY['doubler_min'];\r
-       $CONFIG['doubler_max']         = $DUMMY['doubler_max'];\r
-       $CONFIG['doubler_left']        = $DUMMY['doubler_left'];\r
-       $CONFIG['doubler_counter']     = $DUMMY['doubler_counter'];\r
-       $CONFIG['doubler_max_sent']    = $DUMMY['doubler_max_sent'];\r
-       $CONFIG['doubler_group_sent']  = $DUMMY['doubler_group_sent'];\r
-       $CONFIG['doubler_sent_all']    = $DUMMY['doubler_sent_all'];\r
-       unset($DUMMY);\r
-\r
-       if ((defined('__DAILY_RESET')) && ($CONFIG['doubler_send_mode'] == "RESET"))\r
-       {\r
-               // So let's check for points\r
-               $INC_POOL[] = PATH."inc/doubler_send.php";\r
-       }\r
-       break;\r
-}\r
-\r
-// Language file prefix\r
-$EXT_LANG_PREFIX = "doubler";\r
-\r
-// Extension is always active?\r
-$EXT_ALWAYS_ACTIVE = "N";\r
-\r
-//\r
-?>\r
+<?php
+/************************************************************************
+ * MXChange v0.2.1                                    Start: 02/03/2005 *
+ * ================                             Last change: 02/03/2005 *
+ *                                                                      *
+ * -------------------------------------------------------------------- *
+ * File              : ext-doubler.php                                  *
+ * -------------------------------------------------------------------- *
+ * Short description : Double points                                    *
+ * -------------------------------------------------------------------- *
+ * Kurzbeschreibung  : Punkte verdoppeln                                *
+ * -------------------------------------------------------------------- *
+ *                                                                      *
+ * -------------------------------------------------------------------- *
+ * Copyright (c) 2003 - 2008 by Roland Haeder                           *
+ * For more information visit: http://www.mxchange.org                  *
+ *                                                                      *
+ * This program is free software; you can redistribute it and/or modify *
+ * it under the terms of the GNU General Public License as published by *
+ * the Free Software Foundation; either version 2 of the License, or    *
+ * (at your option) any later version.                                  *
+ *                                                                      *
+ * This program is distributed in the hope that it will be useful,      *
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
+ * GNU General Public License for more details.                         *
+ *                                                                      *
+ * You should have received a copy of the GNU General Public License    *
+ * along with this program; if not, write to the Free Software          *
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
+ * MA  02110-1301  USA                                                  *
+ ************************************************************************/
+
+// Some security stuff...
+if ((ereg(basename(__FILE__), $_SERVER['PHP_SELF'])))
+{
+       $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
+       require($INC);
+}
+
+// Version number
+$EXT_VERSION = "0.1.6";
+
+// Auto-set extension version
+if (empty($EXT_VER)) $EXT_VER = $EXT_VERSION;
+
+// Version history array (add more with , "0.1" and so on)
+$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");
+
+switch ($EXT_LOAD_MODE)
+{
+case "register": // Do stuff when installtion is running (modules.php?module=admin&action=login is called)
+       // Doubler table
+       $SQLs[] = "DROP TABLE IF EXISTS "._MYSQL_PREFIX."_doubler";
+       $SQLs[] = "CREATE TABLE "._MYSQL_PREFIX."_doubler (
+id bigint(20) not null auto_increment,
+userid bigint(20) not null default '0',
+refid bigint(20) not null default '0',
+points double(20,5) not null default '0.00000',
+remote_ip varchar(15) not null default '0.0.0.0',
+timemark varchar(10) not null default '',
+completed enum('Y', 'N') not null default 'N',
+is_ref enum('Y', 'N') not null default 'N',
+KEY(refid),
+KEY(userid),
+PRIMARY KEY(id)
+)TYPE=MYISAM";
+
+       //
+       // --- SETTINGS ---
+       //
+       // Minimum points to double
+       $SQLs[] = "ALTER TABLE "._MYSQL_PREFIX."_config ADD doubler_min double(20,5) not null default '100.00000'";
+       // Maximum points to double
+       $SQLs[] = "ALTER TABLE "._MYSQL_PREFIX."_config ADD doubler_max double(20,5) not null default '10000.00000'";
+       // Points left on users account after doubling
+       $SQLs[] = "ALTER TABLE "._MYSQL_PREFIX."_config ADD doubler_left bigint(20) not null default '1000'";
+       // Charge for doubling points which goes to the webmaster (shreddered in fact!)
+       $SQLs[] = "ALTER TABLE "._MYSQL_PREFIX."_config ADD doubler_charge float(7,3) not null default '0.030'";
+       // Referral percents
+       $SQLs[] = "ALTER TABLE "._MYSQL_PREFIX."_config ADD doubler_ref float(7,3) not null default '0.020'";
+       // Shall I use the jackpot to take points from? (Y/N, default=Y)
+       $SQLs[] = "ALTER TABLE "._MYSQL_PREFIX."_config ADD doubler_jackpot enum('Y', 'N') not null default 'Y'";
+       // A user account to take points from (default: 0->none)
+       $SQLs[] = "ALTER TABLE "._MYSQL_PREFIX."_config ADD doubler_uid bigint(20) not null default '0'";
+       // Total payed out points from your doublers
+       $SQLs[] = "ALTER TABLE "._MYSQL_PREFIX."_config ADD doubler_points double(20,5) not null default '0.00000'";
+       // Sending mode of mails (immediately/daily reset)
+       // --> This also means who fast the doubled points will be payed out!
+       $SQLs[] = "ALTER TABLE "._MYSQL_PREFIX."_config ADD doubler_send_mode enum('DIRECT', 'RESET') not null default 'DIRECT'";
+       // Timeout for entries to be purged (default: one week)
+       $SQLs[] = "ALTER TABLE "._MYSQL_PREFIX."_config ADD doubler_timeout bigint(20) not null default '".(60*60*24*7)."'";
+       // Number of newest entries to display
+       $SQLs[] = "ALTER TABLE "._MYSQL_PREFIX."_config ADD doubler_display_new tinyint(3) not null default '10'";
+       // Number of entries which will be payed out soon
+       $SQLs[] = "ALTER TABLE "._MYSQL_PREFIX."_config ADD doubler_display_pay tinyint(3) not null default '10'";
+       // Number of entries which are already payed out
+       $SQLs[] = "ALTER TABLE "._MYSQL_PREFIX."_config ADD doubler_display_old tinyint(3) not null default '10'";
+       // Points used by every member
+       $SQLs[] = "ALTER TABLE "._MYSQL_PREFIX."_user_data ADD doubler_points double(20,5) not null default '0.00000'";
+       // Counter for usage of the doubler
+       $SQLs[] = "ALTER TABLE "._MYSQL_PREFIX."_config ADD doubler_counter bigint(20) not null default '0'";
+
+       //
+       // --- MENU SYSTEMS ---
+       //
+       // Admin menu
+       $SQLs[] = "INSERT INTO "._MYSQL_PREFIX."_admin_menu (action, what, title, descr, sort) VALUES ('doubler', '', '{!POINTS!}-Verdoppler', 'Einstellungen und Eintr&auml;ge auflisten.', 4)";
+       $SQLs[] = "INSERT INTO "._MYSQL_PREFIX."_admin_menu (action, what, title, descr, sort) VALUES ('doubler', 'list_doubler', 'Auflisten', 'Eintr&auml;ge aus der Verdiensttabelle auflisten', 1)";
+       $SQLs[] = "INSERT INTO "._MYSQL_PREFIX."_admin_menu (action, what, title, descr, sort) VALUES ('doubler', 'config_doubler', 'Einstellungen', 'Prozentuale Geb&uuml;hr usw. einstellen.', 2)";
+
+       // Guest menu (informations / default doubler link)
+       $SQLs[] = "INSERT INTO "._MYSQL_PREFIX."_guest_menu (action, what, title, sort, visible, locked) VALUES ('main', 'doubler', 'Verdoppeln!', 3, 'Y', 'Y')";
+
+       // Member menu
+       $SQLs[] = "INSERT INTO "._MYSQL_PREFIX."_member_menu (action, what, title, visible, locked, sort) VALUES ('main', 'doubler', 'Verdoppeln!', 'Y', 'Y', 7)";
+       break;
+
+case "remove": // Do stuff when removing extension
+       // SQL commands to run
+       $SQLs[] = "DROP TABLE IF EXISTS "._MYSQL_PREFIX."_doubler";
+       $SQLs[] = "DELETE LOW_PRIORITY FROM "._MYSQL_PREFIX."_admin_menu WHERE action='doubler' LIMIT 3";
+       $SQLs[] = "DELETE LOW_PRIORITY FROM "._MYSQL_PREFIX."_guest_menu WHERE what='doubler' LIMIT 1";
+       $SQLs[] = "DELETE LOW_PRIORITY FROM "._MYSQL_PREFIX."_member_menu WHERE what='doubler' LIMIT 1";
+       break;
+
+case "activate": // Do stuff when admin activates this extension
+       // SQL commands to run
+       $SQLs[] = "UPDATE "._MYSQL_PREFIX."_member_menu SET visible='Y', locked='N' WHERE what='doubler' LIMIT 1";
+       $SQLs[] = "UPDATE "._MYSQL_PREFIX."_guest_menu SET visible='Y', locked='N' WHERE what='doubler' LIMIT 1";
+       $SQLs[] = "UPDATE "._MYSQL_PREFIX."_mod_reg SET locked='N', hidden='N', admin_only='N', mem_only='N' WHERE module='doubler' LIMIT 1";
+       break;
+
+case "deactivate": // Do stuff when admin deactivates this extension
+       // SQL commands to run
+       $SQLs[] = "UPDATE "._MYSQL_PREFIX."_member_menu SET visible='Y', locked='Y' WHERE what='doubler' LIMIT 1";
+       $SQLs[] = "UPDATE "._MYSQL_PREFIX."_guest_menu SET visible='Y', locked='Y' WHERE what='doubler' LIMIT 1";
+       $SQLs[] = "UPDATE "._MYSQL_PREFIX."_mod_reg SET locked='Y' WHERE module='doubler' LIMIT 1";
+       break;
+
+case "update": // Update an extension
+       switch ($EXT_VER)
+       {
+       case "0.0.1": // SQL queries for v0.0.1
+               // Update notes (these will be set as task text!)
+               $UPDATE_NOTES = "Problem mit User-ID behoben!";
+               break;
+
+       case "0.0.2": // SQL queries for v0.0.2
+               // Total used points
+               $SQLs[] = "ALTER TABLE "._MYSQL_PREFIX."_config ADD doubler_used double(20,5) not null default '0.00000'";
+
+               // Update notes (these will be set as task text!)
+               $UPDATE_NOTES = "Geb&uuml;hr wird vom Verdoppler-Pott abgezogen.";
+               break;
+
+       case "0.0.3": // SQL queries for v0.0.3
+               // Update notes (these will be set as task text!)
+               $UPDATE_NOTES = "Drei SQL-Fehler beseitigt.";
+               break;
+
+       case "0.0.4": // SQL queries for v0.0.4
+               // Shall I use the doubler's account to take points from? (Y/N, default=Y)
+               $SQLs[] = "ALTER TABLE "._MYSQL_PREFIX."_config ADD doubler_own enum('Y', 'N') not null default 'Y'";
+
+               // Update notes (these will be set as task text!)
+               $UPDATE_NOTES = POINTS."-Guthaben des Verdopplers kann optional nicht mit einbezogen werden.";
+               break;
+
+       case "0.0.5": // SQL queries for v0.0.5
+               // Update notes (these will be set as task text!)
+               $UPDATE_NOTES = "Counter-Stand und noch zum Verdoppeln &uuml;brige {!POINTS!} in Templates eingebunden. Auflistung in Admin-Bereich komplettiert.";
+               break;
+
+       case "0.0.6": // SQL queries for v0.0.6
+               $SQLs[] = "UPDATE "._MYSQL_PREFIX."_config SET doubler_used=doubler_used+(SUM(d.points)*c.doubler_charge)
+FROM "._MYSQL_PREFIX."_doubler AS d, "._MYSQL_PREFIX."_config AS c
+WHERE d.completed='N'";
+               $SQLs[] = "ALTER TABLE "._MYSQL_PREFIX."_config ADD doubler_max_sent tinyint(4) not null default '1'";
+               $SQLs[] = "ALTER TABLE "._MYSQL_PREFIX."_config ADD doubler_group_sent tinyint(4) not null default '1'";
+               $SQLs[] = "ALTER TABLE "._MYSQL_PREFIX."_config ADD doubler_sent_all enum('Y', 'N') not null default 'Y'";
+
+               // Update notes (these will be set as task text!)
+               $UPDATE_NOTES = "Geb&uuml;hrenabzug wird beim Einzahlen abgezogen (wurde von Auszahlung abgezogen) und maximal bei Auszahlung zu kontrollierende Accounts einstellbar.<br>Template <u>admin_config_doubler_pro.tpl</u> ist &uuml;berfl&uuml;ssig geworden. Bitte l&ouml;schen Sie dies!";
+               break;
+
+       case "0.0.7": // SQL queries for v0.0.7
+               // Update notes (these will be set as task text!)
+               $UPDATE_NOTES = "W&ouml;rter <STRONG>Mailtausch</STRONG>, <STRONG>Mailtausches</STRONG> und <STRONG>Mailtauscher</STRONG> sind austauschbar.<BR><BR>Minus-Guthaben des Verdoppler-Accounts repariert und Mitgliedsmail erweitert mit Transaktionsummer und IP-Nummer.";
+               break;
+
+       case "0.0.8": // SQL queries for v0.0.8
+               // Update notes (these will be set as task text!)
+               $UPDATE_NOTES = "Bitte verschieben Sie die doubler-Templates (Ordner: ".PATH."/templates/".GET_LANGUAGE()."/html/) in den neuen Order doubler!";
+               break;
+
+       case "0.0.9": // SQL queries for v0.0.9
+               // Update notes (these will be set as task text!)
+               $UPDATE_NOTES = "Abspeichern von Einstellungen repariert.";
+               break;
+
+       case "0.1.0": // SQL queries for v0.1.0
+               // Update notes (these will be set as task text!)
+               $UPDATE_NOTES = "Vorbereitung auf die neue Mediendaten v0.0.4.";
+               break;
+
+       case "0.1.1": // SQL queries for v0.1.1
+               // Update notes (these will be set as task text!)
+               $UPDATE_NOTES = "Zwei SQL-Fehler in <STRONG>inc/doubler_send.php</STRONG> beseitigt.";
+               break;
+
+       case "0.1.2": // SQL queries for v0.1.2
+               // Update notes (these will be set as task text!)
+               $UPDATE_NOTES = "Sicherheitsupdate f&uuml;r die Include-Befehle.";
+               break;
+
+       case "0.1.3": // SQL queries for v0.1.3
+               // Update notes (these will be set as task text!)
+               $UPDATE_NOTES = "De-/Aktivieren des mit dieser Erweiterung verkn&uuml;pften Modules eingebunden.";
+               break;
+
+       case "0.1.4": // SQL queries for v0.1.4
+               $SQLs[] = "UPDATE "._MYSQL_PREFIX."_member_menu SET action='extras', sort='4' WHERE what='doubler' LIMIT 1";
+
+               // Update notes (these will be set as task text!)
+               $UPDATE_NOTES = "Mitgliedsmen&uuml; komplett umgebaut.";
+               break;
+
+       case "0.1.5": // SQL queries for v0.1.5
+               // Update notes (these will be set as task text!)
+               $UPDATE_NOTES = "Hash-Erstellung von <STRONG>md5()</STRONG> auf bessere Funktion <STRONG>generateHash()</STRONG> umgestellt.";
+               break;
+
+       case "0.1.6": // SQL queries for v0.1.6
+               // Update notes (these will be set as task text!)
+               $UPDATE_NOTES = "Fehlerhinweis bei deaktivierter Erweiterung verbessert.";
+               break;
+       }
+       break;
+
+default: // Do stuff when extension is loaded
+       $DUMMY = LOAD_CONFIG("0");
+       $CONFIG['doubler_charge']      = $DUMMY['doubler_charge'];
+       $CONFIG['doubler_jackpot']     = $DUMMY['doubler_jackpot'];
+       $CONFIG['doubler_own']         = $DUMMY['doubler_own'];
+       $CONFIG['doubler_uid']         = $DUMMY['doubler_uid'];
+       $CONFIG['doubler_points']      = $DUMMY['doubler_points'];
+       $CONFIG['doubler_used']        = $DUMMY['doubler_used'];
+       $CONFIG['doubler_send_mode']   = $DUMMY['doubler_send_mode'];
+       $CONFIG['doubler_timeout']     = $DUMMY['doubler_timeout'];
+       $CONFIG['doubler_display_new'] = $DUMMY['doubler_display_new'];
+       $CONFIG['doubler_display_pay'] = $DUMMY['doubler_display_pay'];
+       $CONFIG['doubler_display_old'] = $DUMMY['doubler_display_old'];
+       $CONFIG['doubler_ref']         = $DUMMY['doubler_ref'];
+       $CONFIG['doubler_min']         = $DUMMY['doubler_min'];
+       $CONFIG['doubler_max']         = $DUMMY['doubler_max'];
+       $CONFIG['doubler_left']        = $DUMMY['doubler_left'];
+       $CONFIG['doubler_counter']     = $DUMMY['doubler_counter'];
+       $CONFIG['doubler_max_sent']    = $DUMMY['doubler_max_sent'];
+       $CONFIG['doubler_group_sent']  = $DUMMY['doubler_group_sent'];
+       $CONFIG['doubler_sent_all']    = $DUMMY['doubler_sent_all'];
+       unset($DUMMY);
+
+       if ((defined('__DAILY_RESET')) && ($CONFIG['doubler_send_mode'] == "RESET"))
+       {
+               // So let's check for points
+               $INC_POOL[] = PATH."inc/doubler_send.php";
+       }
+       break;
+}
+
+// Language file prefix
+$EXT_LANG_PREFIX = "doubler";
+
+// Extension is always active?
+$EXT_ALWAYS_ACTIVE = "N";
+
+//
+?>