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