1e9561adfdeae6f2ebeba1a13075de0cce4333b5
[mailer.git] / 0.2.1 / inc / extensions / ext-active.php
1 <?php\r
2 /************************************************************************\r
3  * MXChange v0.2.1                                    Start: 10/03/2004 *\r
4  * ================                             Last change: 11/26/2004 *\r
5  *                                                                      *\r
6  * -------------------------------------------------------------------- *\r
7  * File              : ext-active.php                                   *\r
8  * -------------------------------------------------------------------- *\r
9  * Short description : "Last active users"                              *\r
10  * -------------------------------------------------------------------- *\r
11  * Kurzbeschreibung  : "Zuletzt aktiv gewesenen Mitglieder              *\r
12  * -------------------------------------------------------------------- *\r
13  *                                                                      *\r
14  * -------------------------------------------------------------------- *\r
15  * Copyright (c) 2003 - 2008 by Roland Haeder                           *\r
16  * For more information visit: http://www.mxchange.org                  *\r
17  *                                                                      *\r
18  * This program is free software; you can redistribute it and/or modify *\r
19  * it under the terms of the GNU General Public License as published by *\r
20  * the Free Software Foundation; either version 2 of the License, or    *\r
21  * (at your option) any later version.                                  *\r
22  *                                                                      *\r
23  * This program is distributed in the hope that it will be useful,      *\r
24  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *\r
25  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *\r
26  * GNU General Public License for more details.                         *\r
27  *                                                                      *\r
28  * You should have received a copy of the GNU General Public License    *\r
29  * along with this program; if not, write to the Free Software          *\r
30  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *\r
31  * MA  02110-1301  USA                                                  *\r
32  ************************************************************************/\r
33 \r
34 // Some security stuff...\r
35 if ((ereg(basename(__FILE__), $_SERVER['PHP_SELF'])))\r
36 {\r
37         $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4)."/security.php";\r
38         require($INC);\r
39 }\r
40 \r
41 // Version number\r
42 $EXT_VERSION = "0.0.8";\r
43 \r
44 // Auto-set extension version\r
45 if (empty($EXT_VER)) $EXT_VER = $EXT_VERSION;\r
46 \r
47 // Version history array (add more with , "0.1" and so on)\r
48 $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");\r
49 \r
50 switch ($EXT_LOAD_MODE)\r
51 {\r
52 case "register": // Do stuff when installtion is running (modules.php?module=admin&action=login is called)\r
53         // SQL commands to run\r
54         $SQLs[] = "INSERT INTO "._MYSQL_PREFIX."_guest_menu (action, what, title, sort, visible, locked) VALUES ('main', 'active', 'Heute Online', 10, 'N', 'Y')";\r
55 \r
56         // Load CSS file?\r
57         $EXT_CSS = "Y";\r
58         break;\r
59 \r
60 case "remove": // Do stuff when removing extension\r
61         // SQL commands to run\r
62         $SQLs[] = "DELETE LOW_PRIORITY FROM "._MYSQL_PREFIX."_guest_menu WHERE what='active' LIMIT 1";\r
63         $SQLs[] = "DELETE LOW_PRIORITY FROM "._MYSQL_PREFIX."_admin_menu WHERE what='config_active' LIMIT 1";\r
64         break;\r
65 \r
66 case "activate": // Do stuff when admin activates this extension\r
67         // SQL commands to run\r
68         $SQLs[] = "UPDATE "._MYSQL_PREFIX."_guest_menu SET visible='N', locked='N' WHERE what='active' LIMIT 1";\r
69         break;\r
70 \r
71 case "deactivate": // Do stuff when admin deactivates this extension\r
72         // SQL commands to run\r
73         $SQLs[] = "UPDATE "._MYSQL_PREFIX."_guest_menu SET visible='N', locked='Y' WHERE what='active' LIMIT 1";\r
74         break;\r
75 \r
76 case "update": // Update an extension\r
77         switch ($EXT_VER)\r
78         {\r
79         case "0.0.1": // SQL queries for v0.0.1\r
80                 // Update notes (these will be set as task text!)\r
81                 $UPDATE_NOTES = "Wegen des Theme-Supportes hat sich die URL zur CSS-Datei ge&auml;ndert.";\r
82                 break;\r
83 \r
84         case "0.0.2": // SQL queries for v0.0.2\r
85                 // Update notes (these will be set as task text!)\r
86                 $UPDATE_NOTES = "Men&uuml;punkte im Gast-/Mitgliedsbereich k&ouml;nnen nicht mehr aufgerufen werden, wenn die Erweiterung deaktiviert ist.";\r
87                 break;\r
88 \r
89         case "0.0.3": // SQL queries for v0.0.3\r
90                 // Update notes (these will be set as task text!)\r
91                 $UPDATE_NOTES = "Design &quot;Solid-Business&quot; eingebaut.";\r
92                 break;\r
93 \r
94         case "0.0.4": // SQL queries for v0.0.4\r
95                 // Update notes (these will be set as task text!)\r
96                 $UPDATE_NOTES = "Seit <A href=\"".SERVER_URL."/patches/340-Gast_Mitgliedsmenue_Deaktivieren.zip\">Patch 340</A> &uuml;berfl&uuml;ssige HTML-Tags entfernt.";\r
97                 break;\r
98 \r
99         case "0.0.5": // SQL queries for v0.0.5\r
100                 $SQLs[] = "ALTER TABLE "._MYSQL_PREFIX."_config ADD active_limit bigint(20) not null default '10'";\r
101                 $SQLs[] = "INSERT INTO "._MYSQL_PREFIX."_admin_menu (action, what, title, descr, sort) VALUES('setup', 'config_active', 'Aktiv-Liste', 'Einstellungen an der Aktiv-Liste (<STRONG>Heute Online</STRONG> im Gastbereich) vornehmen.', 8)";\r
102 \r
103                 // Update notes (these will be set as task text!)\r
104                 $UPDATE_NOTES = "Aktiven-Liste im Gastbereich ist nun einschr&auml;nkbar.";\r
105                 break;\r
106 \r
107         case "0.0.6": // SQL queries for v0.0.6\r
108                 // Update notes (these will be set as task text!)\r
109                 $UPDATE_NOTES = "Sicherheitsupdate: SQL-Anweisungen gesch&uuml;tzt.";\r
110                 break;\r
111 \r
112         case "0.0.7": // SQL queries for v0.0.7\r
113                 // Update notes (these will be set as task text!)\r
114                 $UPDATE_NOTES = "Abspeichern von Einstellungen repariert.";\r
115                 break;\r
116 \r
117         case "0.0.8": // SQL queries for v0.0.8\r
118                 // Update notes (these will be set as task text!)\r
119                 $UPDATE_NOTES = "Fehlerhinweis bei deaktivierter Erweiterung verbessert.";\r
120                 break;\r
121         }\r
122         break;\r
123 \r
124 default: // Do stuff when extension is loaded\r
125         $DUMMY = LOAD_CONFIG("0");\r
126         $CONFIG['active_limit'] = $DUMMY['active_limit']; // Only display X most active users for today\r
127         unset($DUMMY);\r
128         break;\r
129 }\r
130 // Language file prefix\r
131 $EXT_LANG_PREFIX = "active";\r
132 \r
133 // Extension is always active?\r
134 $EXT_ALWAYS_ACTIVE = "N";\r
135 \r
136 //\r
137 ?>\r