Rewrite of adding menu entries, should prevent double menus now and forever...
[mailer.git] / inc / extensions / ext-online.php
1 <?php
2 /************************************************************************
3  * MXChange v0.2.1                                    Start: 01/14/2005 *
4  * ================                             Last change: 01/14/2005 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : ext-online.php                                   *
8  * -------------------------------------------------------------------- *
9  * Short description : Who is where online?                             *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Wer befindet sich wo gerade Online?              *
12  * -------------------------------------------------------------------- *
13  * $Revision::                                                        $ *
14  * $Date::                                                            $ *
15  * $Tag:: 0.2.1-FINAL                                                 $ *
16  * $Author::                                                          $ *
17  * Needs to be in all Files and every File needs "svn propset           *
18  * svn:keywords Date Revision" (autoprobset!) at least!!!!!!            *
19  * -------------------------------------------------------------------- *
20  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
21  * For more information visit: http://www.mxchange.org                  *
22  *                                                                      *
23  * This program is free software; you can redistribute it and/or modify *
24  * it under the terms of the GNU General Public License as published by *
25  * the Free Software Foundation; either version 2 of the License, or    *
26  * (at your option) any later version.                                  *
27  *                                                                      *
28  * This program is distributed in the hope that it will be useful,      *
29  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
30  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
31  * GNU General Public License for more details.                         *
32  *                                                                      *
33  * You should have received a copy of the GNU General Public License    *
34  * along with this program; if not, write to the Free Software          *
35  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
36  * MA  02110-1301  USA                                                  *
37  ************************************************************************/
38
39 // Some security stuff...
40 if (!defined('__SECURITY')) {
41         die();
42 }
43
44 // Version number
45 setThisExtensionVersion('0.0.5');
46
47 // Version history array (add more with , '0.1.0' and so on)
48 setExtensionVersionHistory(array('0.0', '0.0.1', '0.0.2', '0.0.3', '0.0.4', '0.0.5'));
49
50 switch (getExtensionMode()) {
51         case 'register': // Do stuff when installation is running (modules.php?module=admin is called)
52                 // SQL commands to run
53                 addExtensionSql("DROP TABLE IF EXISTS `{?_MYSQL_PREFIX?}_online`");
54                 addExtensionSql("CREATE TABLE `{?_MYSQL_PREFIX?}_online` (
55 `id` BIGINT(20) UNSIGNED NOT NULL AUTO_INCREMENT,
56 `sid` VARCHAR(32) NOT NULL DEFAULT '',
57 `ip` VARCHAR(15) NOT NULL DEFAULT '',
58 `userid` BIGINT(20) UNSIGNED NOT NULL DEFAULT 0,
59 `refid` BIGINT(20) UNSIGNED NOT NULL DEFAULT 0,
60 `module` VARCHAR(255) NOT NULL DEFAULT '',
61 `action` VARCHAR(255) NOT NULL DEFAULT '',
62 `what` VARCHAR(255) NOT NULL DEFAULT '',
63 `is_admin` ENUM('Y','N') NOT NULL DEFAULT 'N',
64 `is_member` ENUM('Y','N') NOT NULL DEFAULT 'N',
65 `timestamp` VARCHAR(10) NOT NULL DEFAULT 0,
66 PRIMARY KEY (`id`),
67 KEY (`userid`),
68 KEY (`refid`),
69 KEY `admin_member` (`is_admin`,`is_member`)
70 ) TYPE={?_TABLE_TYPE?}");
71                 addAdminMenuSql('misc','usr_online','Online-Statistik','Eine Liste von derzeit &quot;Online&quot; Usern. Doppelte Eintr&auml;ge k&ouml;nnte auf mangelnden Cookie-Support des Browsers oder auf einen Spider hindeuten.', 1);
72                 break;
73
74         case 'remove': // Do stuff when removing extension
75                 // SQL commands to run
76                 addExtensionSql("DROP TABLE IF EXISTS `{?_MYSQL_PREFIX?}_online`");
77                 addExtensionSql("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_admin_menu` WHERE `what`='usr_online'");
78                 addExtensionSql("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_guest_menu` WHERE `action`='online'");
79
80                 // Unregister filter
81                 unregisterFilter('init', 'UPDATE_ONLINE_LIST', true, getExtensionDryRun());
82                 break;
83
84         case 'activate': // Do stuff when admin activates this extension
85                 // SQL commands to run
86                 addExtensionSql("UPDATE `{?_MYSQL_PREFIX?}_guest_menu` SET `visible`='Y', `locked`='N' WHERE `action`='online' LIMIT 1");
87                 break;
88
89         case 'deactivate': // Do stuff when admin deactivates this extension
90                 // SQL commands to run
91                 addExtensionSql("UPDATE `{?_MYSQL_PREFIX?}_guest_menu` SET `visible`='N', `locked`='Y' WHERE `action`='online' LIMIT 1");
92                 break;
93
94         case 'update': // Update an extension
95                 switch (getCurrentExtensionVersion())
96                 {
97                         case '0.0.1': // SQL queries for v0.0.1
98                                 // Update notes (these will be set as task text!)
99                                 setExtensionUpdateNotes("Fehler <u>Unknown column 'visibled' in 'field list'</u> behoben.");
100                                 break;
101
102                         case '0.0.2': // SQL queries for v0.0.2
103                                 // Update notes (these will be set as task text!)
104                                 setExtensionUpdateNotes("Seit <strong>Patch 340</strong> &uuml;berfl&uuml;ssige HTML-Tags entfernt.");
105                                 break;
106
107                         case '0.0.3': // SQL queries for v0.0.3
108                                 // Update notes (these will be set as task text!)
109                                 setExtensionUpdateNotes("HTML-Code ausgelagert in Templates und SQL-Anweisungen abgesichert.");
110                                 break;
111
112                         case '0.0.4': // SQL queries for v0.0.4
113                                 // Update notes (these will be set as task text!)
114                                 setExtensionUpdateNotes("Erstellung der Datenbanktabelle `{?_MYSQL_PREFIX?}_online` in diese Erweiterung ausgelagert.");
115                                 break;
116
117                         case '0.0.5': // SQL queries for v0.0.5
118                                 addGuestMenuSql('online',NULL,'Jetzt Online','Y','N',2);
119
120                                 // Register filter
121                                 registerFilter('init', 'UPDATE_ONLINE_LIST', false, true, getExtensionDryRun());
122
123                                 // Update notes (these will be set as task text!)
124                                 setExtensionUpdateNotes("Hinzuf&uuml;gen des Men&uuml;punktes &quot;Jetzt Online&quot; wird nun von dieser Erweiterung erledigt. Filter hinzugef&uuml;gt.");
125                                 break;
126                 }
127                 break;
128
129         case 'modify': // When the extension got modified
130                 break;
131
132         case 'test': // For testing purposes. For details see file inc/modules/admin/what-extensions.php, arround line 305.
133                 break;
134
135         case 'init': // Do stuff when extension is initialized
136                 break;
137
138         default: // Unknown extension mode
139                 DEBUG_LOG(__FILE__, __LINE__, sprintf("Unknown extension mode %s detected.", getExtensionMode()));
140                 break;
141 }
142
143 // [EOF]
144 ?>