All, except security block, include()/require() rewritten to own LOAD_INC()/LOAD_INC_...
[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_VERSION = "0.0.1";
42
43 // Auto-set extension version
44 if (!isset($EXT_VER)) $EXT_VER = $EXT_VERSION;
45
46 // Version history array (add more with , "0.1" and so on)
47 $EXT_VER_HISTORY = array("0.0","0.0.1");
48
49 switch ($EXT_LOAD_MODE)
50 {
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_refs`";
54         $SQLs[] = "CREATE TABLE `{!_MYSQL_PREFIX!}_user_refs` (
55 `id` BIGINT(20) UNSIGNED NOT NULL auto_increment,
56 `userid` BIGINT(20) UNSIGNED NOT NULL DEFAULT 0,
57 `level` smallINT(6) UNSIGNED NOT NULL DEFAULT 0,
58 `refid` BIGINT(20) UNSIGNED NOT NULL DEFAULT 0,
59 `refback` float(4,1) NOT NULL DEFAULT 0.0,
60 `points` FLOAT( 20,5) DEFAULT 0.00000 NOT NULL,
61 PRIMARY KEY (`id`),
62 UNIQUE `user_refid` (`userid`,`level`,`refid`),
63 KEY (`level`),
64 KEY (`refid`)
65 ) ENGINE=MyISAM COMMENT='User Referals With Refback'";
66         $SQLs[] = "INSERT INTO `{!_MYSQL_PREFIX!}_member_menu` (`action`,`what`,`title`,`sort`,`visible`,`locked`) VALUES ('main','refback','Ref-Back einstellen',4,'N','N')";
67         break;
68
69 case "remove": // Do stuff when removing extension
70         // SQL commands to run
71         $SQLs[] = "DROP TABLE IF EXISTS `{!_MYSQL_PREFIX!}_user_refs`";
72         $SQLs[] = "DELETE LOW_PRIORITY FROM `{!_MYSQL_PREFIX!}_member_menu` WHERE what='refback' LIMIT 1";
73         $SQLs[] = "DELETE LOW_PRIORITY FROM `{!_MYSQL_PREFIX!}_admin_menu` WHERE what IN('config_refback','list_refback') LIMIT 2";
74         $SQLs[] = "UPDATE `{!_MYSQL_PREFIX!}_refsystem` SET level=level-1";
75         break;
76
77 case "activate": // Do stuff when admin activates this extension
78         // SQL commands to run
79         $SQLs[] = "UPDATE `{!_MYSQL_PREFIX!}_member_menu` SET `visible`='Y', `locked`='N' WHERE what='refback' LIMIT 1";
80         break;
81
82 case "deactivate": // Do stuff when admin deactivates this extension
83         // SQL commands to run
84         $SQLs[] = "UPDATE `{!_MYSQL_PREFIX!}_member_menu` SET `visible`='N', `locked`='Y' WHERE what='refback' LIMIT 1";
85         break;
86
87 case "update": // Update an extension
88         switch ($EXT_VER)
89         {
90         case "0.0.1": // SQL queries for v0.0.1
91                 $SQLs[] = "ALTER TABLE `{!_MYSQL_PREFIX!}_config` ADD refback_enabled ENUM('Y','N') NOT NULL DEFAULT 'Y'";
92                 $SQLs[] = "ALTER TABLE `{!_MYSQL_PREFIX!}_config` ADD refback_min_perc TINYINT(3) NOT NULL DEFAULT 0";
93                 $SQLs[] = "ALTER TABLE `{!_MYSQL_PREFIX!}_config` ADD refback_max_perc TINYINT(3) NOT NULL DEFAULT 100";
94                 $SQLs[] = "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)";
95                 $SQLs[] = "INSERT INTO `{!_MYSQL_PREFIX!}_admin_menu` (`action`,`what`,`title`,`descr`,`sort`) VALUES ('user','list_refback','Refback auflisten','Refback aller Mitglieder auflisten.',15)";
96
97                 // Update notes (these will be set as task text!)
98                 $UPDATE_NOTES = "Refback-System ist nun ein-/ausschaltbar und minimale/maximale Refback-Prozente sind festlegbar.";
99                 break;
100         }
101         break;
102
103 case "test": // For testing purposes. For details see file inc/modules/admin/what-extensions.php, arround line 305.
104         break;
105
106 default: // Do stuff when extension is loaded
107         // When the refback is not installed we cannot load it's configuration... *sigh*
108         break;
109 }
110
111 // Shall we include special files?
112 if ($EXT_LOAD_MODE == "register") {
113         // Execute this special file on this update
114         $INC_POOL[] = sprintf("%sinc/gen_refback.php",
115                 constant('PATH')
116         );
117 } // END - if
118
119 // Keep this extension always active!
120 $EXT_ALWAYS_ACTIVE = "N";
121
122 //
123 ?>