Refback extension in alpha phase finished, users can give refback to all refs in...
[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";
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");
48
49 switch ($EXT_LOAD_MODE)
50 {
51 case "register": // Do stuff when installtion 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) NOT NULL auto_increment,
56 `userid` bigint(20) NOT NULL DEFAULT 0,
57 `level` smallint(6) NOT NULL DEFAULT 0,
58 `refid` bigint(20) 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/Ref-&Uuml;bersicht',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         break;
74
75 case "activate": // Do stuff when admin activates this extension
76         // SQL commands to run
77         $SQLs[] = "";
78         break;
79
80 case "deactivate": // Do stuff when admin deactivates this extension
81         // SQL commands to run
82         $SQLs[] = "";
83         break;
84
85 case "update": // Update an extension
86         switch ($EXT_VER)
87         {
88         case "0.0.1": // SQL queries for v0.0.1
89                 $SQLs[] = "";
90
91                 // Update notes (these will be set as task text!)
92                 $UPDATE_NOTES = "";
93                 break;
94         }
95         break;
96
97 default: // Do stuff when extension is loaded
98         // When the refback is not installed we cannot load it's configuration... *sigh*
99         break;
100 }
101
102 // Shall we include special files?
103 if ($EXT_LOAD_MODE == "register") {
104         // Execute this special file on this update
105         $INC_POOL[] = PATH."inc/gen_refback.php";
106 } // END - if
107
108 // Language file prefix (hmmm, what shall I write with SQL fixes? ;-) )
109 $EXT_LANG_PREFIX = "refback";
110
111 // Extension is always active?
112 $EXT_ALWAYS_ACTIVE = "Y";
113
114 //
115 ?>