MyISAM/InnoDB support added
[mailer.git] / inc / extensions / ext-refback.php
1 <?php
2 /************************************************************************
3  * MXChange v0.2.1                                    Start: 09/29/2008 *
4  * ================                             Last change: 09/29/2008 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : ext-refback.php                                  *
8  * -------------------------------------------------------------------- *
9  * Short description : Refback and ref overview                         *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Ref-Back und Ref-Uebersicht                      *
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 number
41 EXT_SET_VERSION("0.0.1");
42
43 // Version history array (add more with , "0.1" and so on)
44 EXT_SET_VER_HISTORY(array("0.0","0.0.1"));
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_refs`");
51         ADD_SQL("CREATE TABLE `{!_MYSQL_PREFIX!}_user_refs` (
52 `id` BIGINT(20) UNSIGNED NOT NULL auto_increment,
53 `userid` BIGINT(20) UNSIGNED NOT NULL DEFAULT 0,
54 `level` smallINT(6) UNSIGNED NOT NULL DEFAULT 0,
55 `refid` BIGINT(20) UNSIGNED NOT NULL DEFAULT 0,
56 `refback` float(4,1) NOT NULL DEFAULT 0.0,
57 `points` FLOAT( 20,5) DEFAULT 0.00000 NOT NULL,
58 PRIMARY KEY (`id`),
59 UNIQUE `user_refid` (`userid`,`level`,`refid`),
60 KEY (`level`),
61 KEY (`refid`)
62 ) ENGINE={!_TABLE_TYPE!} COMMENT='User Referals With Refback'");
63         ADD_SQL("INSERT INTO `{!_MYSQL_PREFIX!}_member_menu` (`action`,`what`,`title`,`sort`,`visible`,`locked`) VALUES ('main','refback','Ref-Back einstellen',4,'N','N')");
64         break;
65
66 case "remove": // Do stuff when removing extension
67         // SQL commands to run
68         ADD_SQL("DROP TABLE IF EXISTS `{!_MYSQL_PREFIX!}_user_refs`");
69         ADD_SQL("DELETE LOW_PRIORITY FROM `{!_MYSQL_PREFIX!}_member_menu` WHERE `what`='refback' LIMIT 1");
70         ADD_SQL("DELETE LOW_PRIORITY FROM `{!_MYSQL_PREFIX!}_admin_menu` WHERE what IN('config_refback','list_refback') LIMIT 2");
71         ADD_SQL("UPDATE `{!_MYSQL_PREFIX!}_refsystem` SET level=level-1");
72         break;
73
74 case "activate": // Do stuff when admin activates this extension
75         // SQL commands to run
76         ADD_SQL("UPDATE `{!_MYSQL_PREFIX!}_member_menu` SET `visible`='Y', `locked`='N' WHERE `what`='refback' LIMIT 1");
77         break;
78
79 case "deactivate": // Do stuff when admin deactivates this extension
80         // SQL commands to run
81         ADD_SQL("UPDATE `{!_MYSQL_PREFIX!}_member_menu` SET `visible`='N', `locked`='Y' WHERE `what`='refback' LIMIT 1");
82         break;
83
84 case "update": // Update an extension
85         switch ($EXT_VER)
86         {
87         case "0.0.1": // SQL queries for v0.0.1
88                 ADD_SQL("ALTER TABLE `{!_MYSQL_PREFIX!}_config` ADD refback_enabled ENUM('Y','N') NOT NULL DEFAULT 'Y'");
89                 ADD_SQL("ALTER TABLE `{!_MYSQL_PREFIX!}_config` ADD refback_min_perc TINYINT(3) NOT NULL DEFAULT 0");
90                 ADD_SQL("ALTER TABLE `{!_MYSQL_PREFIX!}_config` ADD refback_max_perc TINYINT(3) NOT NULL DEFAULT 100");
91                 ADD_SQL("INSERT INTO `{!_MYSQL_PREFIX!}_admin_menu` (`action`,`what`,`title`,`descr`,`sort`) VALUES ('setup','config_refback','Refback','&Auml;ndern Sie Einstellungen zum Refback, wie z.B. Minium- und Maximum-Prozente, was die Mitglieder einstellen d&uuml;rfen.',15)");
92                 ADD_SQL("INSERT INTO `{!_MYSQL_PREFIX!}_admin_menu` (`action`,`what`,`title`,`descr`,`sort`) VALUES ('user','list_refback','Refback auflisten','Refback aller Mitglieder auflisten.',15)");
93
94                 // Update notes (these will be set as task text!)
95                 EXT_SET_UPDATE_NOTES("Refback-System ist nun ein-/ausschaltbar und minimale/maximale Refback-Prozente sind festlegbar.");
96                 break;
97         }
98         break;
99
100 case "test": // For testing purposes. For details see file inc/modules/admin/what-extensions.php, arround line 305.
101         break;
102
103 default: // Do stuff when extension is loaded
104         // When the refback is not installed we cannot load it's configuration... *sigh*
105         break;
106 }
107
108 // Shall we include special files?
109 if ($EXT_LOAD_MODE == "register") {
110         // Execute this special file on this update
111         $INC_POOL[] = sprintf("%sinc/gen_refback.php",
112                 constant('PATH')
113         );
114 } // END - if
115
116 //
117 ?>