2 /************************************************************************
3 * MXChange v0.2.1 Start: 07/10/2004 *
4 * ================ Last change: 09/29/2004 *
6 * -------------------------------------------------------------------- *
7 * File : ext-task.php *
8 * -------------------------------------------------------------------- *
9 * Short description : Task management *
10 * -------------------------------------------------------------------- *
11 * Kurzbeschreibung : Aufgabenverwaltung *
12 * -------------------------------------------------------------------- *
14 * -------------------------------------------------------------------- *
15 * Copyright (c) 2003 - 2008 by Roland Haeder *
16 * For more information visit: http://www.mxchange.org *
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. *
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. *
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, *
32 ************************************************************************/
34 // Some security stuff...
35 if (!defined('__SECURITY')) {
36 $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
41 $EXT_VERSION = "0.3.1";
43 // Auto-set extension version
44 if (empty($EXT_VER)) $EXT_VER = $EXT_VERSION;
46 // Version history array (add more with , "0.1" and so on)
47 $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", "0.0.9", "0.1.0", "0.1.1", "0.1.2", "0.1.3", "0.1.4", "0.1.5", "0.1.6", "0.1.7", "0.1.8", "0.1.9", "0.2.0", "0.2.1", "0.2.2", "0.2.3", "0.2.4", "0.2.5", "0.2.6", "0.2.7", "0.2.8", "0.2.9", "0.3.0", "0.3.1");
49 switch ($EXT_LOAD_MODE)
51 case "register": // Do stuff when installtion is running (modules.php?module=admin&action=login is called)
52 // SQL commands to run
53 $SQLs[] = "INSERT INTO "._MYSQL_PREFIX."_admin_menu (action, what, title, sort, descr) VALUES ('task', NULL, 'Aufgaben-Management','1','Erweitertes Aufgaben-Management zur leichten verwaltung der vom System erzeugten Aufgaben.')";
54 $SQLs[] = "INSERT INTO "._MYSQL_PREFIX."_admin_menu (action, what, title, sort, descr) VALUES ('task','list_task','Aufgaben auflisten','1','Alle Ihnen zugewiesenen Aufgaben auflisten (keine Updates).')";
55 $SQLs[] = "UPDATE "._MYSQL_PREFIX."_task_system SET status='SOLVED' WHERE status='CLOSED'";
61 case "remove": // Do stuff when removing extension
62 // SQL commands to run
63 $SQLs[] = "DELETE LOW_PRIORITY FROM "._MYSQL_PREFIX."_admin_menu WHERE action='task' LIMIT 2";
66 case "activate": // Do stuff when admin activates this extension
67 // SQL commands to run
71 case "deactivate": // Do stuff when admin deactivates this extension
72 // SQL commands to run
76 case "update": // Update an extension
79 case "0.0.1": // SQL queries for v0.0.1
80 $SQLs[] = "UPDATE "._MYSQL_PREFIX."_extensions SET ext_has_css='Y' WHERE ext_name='task' AND ext_has_css='N' LIMIT 1";
82 // This update depends on sql_patches update!
83 $EXT_UPDATE_DEPENDS = "sql_patches";
85 // Update notes (these will be set as task text!)
86 $UPDATE_NOTES = "CSS-Datei kann per Admin-Bereich ein- und ausgeschaltet werden.";
89 case "0.0.1": // SQL queries for v0.0.1
90 // Update notes (these will be set as task text!)
91 $UPDATE_NOTES = "Unnötige Script-Teile aus what-list_tasks.php herausgelöscht; beim Anzeigen einer Extension-Update, oder -Register Aufgabe werden bei eingeschaltetem Verbose-Modus alle SQL-Anweisungen aufgelistet.";
94 case "0.0.4": // SQL queries for v0.0.4
95 // Update notes (these will be set as task text!)
96 $UPDATE_NOTES = "Fehler <FONT class=\"admin_failed\">Warning: Missing argument 2 for create_timestamp_from_selections() in ".PATH."inc/libs/pro_functions.php on line 227</FONT> behoben.";
99 case "0.0.5": // SQL queries for v0.0.5
100 // Update notes (these will be set as task text!)
101 $UPDATE_NOTES = "&admin= in &amp;admin= umgewandelt.";
104 case "0.0.6": // SQL queries for v0.0.6
105 // Update notes (these will be set as task text!)
106 $UPDATE_NOTES = "Wegen des Theme-Supportes hat sich die URL zur CSS-Datei geändert.";
109 case "0.0.7": // SQL queries for v0.0.7
110 // Update notes (these will be set as task text!)
111 $UPDATE_NOTES = "Erstellung der Extra-Übersichten verbessert.";
114 case "0.0.8": // SQL queries for v0.0.8
115 // Update notes (these will be set as task text!)
116 $UPDATE_NOTES = "Fehler beseitigt, wenn error_reporting=E_ALL gesetzt ist.";
119 case "0.0.9": // SQL queries for v0.0.9
120 // Update notes (these will be set as task text!)
121 $UPDATE_NOTES = "Fehler bei Abfrage der payout-Erweiterung beseitigt.";
124 case "0.1.0": // SQL queries for v0.2.1
125 // Update notes (these will be set as task text!)
126 $UPDATE_NOTES = "Task-Liste ausgelagert als Template";
129 case "0.1.1": // SQL queries for v0.1.1
130 // Update notes (these will be set as task text!)
131 $UPDATE_NOTES = "Design "Solid-Business" eingebaut.";
134 case "0.1.2": // SQL queries for v0.1.2
135 // Update notes (these will be set as task text!)
136 $UPDATE_NOTES = "Seit <A href=\"#\">Patch 340</A> überflüssige HTML-Tags entfernt.";
139 case "0.1.3": // SQL queries for v0.1.3
140 // Update notes (these will be set as task text!)
141 $UPDATE_NOTES = "Link zum Mitgliedsprofil in Funktion <U>ADMIN_USER_PROFILE_LINK()</U> ausgelagert.";
144 case "0.1.4": // SQL queries for v0.1.4
145 // Update notes (these will be set as task text!)
146 $UPDATE_NOTES = "Wörter <STRONG>Mailtausch</STRONG>, <STRONG>Mailtausches</STRONG> und <STRONG>Mailtauscher</STRONG> sind austauschbar.";
149 case "0.1.5": // SQL queries for v0.1.5
150 // Update notes (these will be set as task text!)
151 $UPDATE_NOTES = "Links wegen <STRONG>what=admins_contct</STRONG> geändert.";
154 case "0.1.6": // SQL queries for v0.1.6
155 // Update notes (these will be set as task text!)
156 $UPDATE_NOTES = "Weitere Direkt-Links eingebaut:<br />
158 <LI>Ländercodes</LI>
159 <LI>Wartende Verdopplungen</LI>
160 <LI><STRONG>Geändert:</STRONG> Wartende Auszahlungen</LI>
161 <LI>Teilnehmer an der Aktiv-Rallye</LI>
162 <LI>Nett hinweisende Linktitel hinzugefügt. :-)</LI>
166 case "0.1.7": // SQL queries for v0.1.7
167 // Update notes (these will be set as task text!)
168 $UPDATE_NOTES = "Direkt Links zum Sponsorenbereich vorbereitend eingebaut.";
171 case "0.1.8": // SQL queries for v0.1.8
172 // Update notes (these will be set as task text!)
173 $UPDATE_NOTES = "Es werden alle installierten und aktivierten Themes angezeigt und verlinkt.";
176 case "0.1.9": // SQL queries for v0.1.9
177 // Update notes (these will be set as task text!)
178 $UPDATE_NOTES = "CSS-Datei in general.css verschmolzen (Patch 435!)";
181 case "0.2.0": // SQL queries for v0.2.0
182 // Update notes (these will be set as task text!)
183 $UPDATE_NOTES = "Alle Administratoren, Referral-Banner und aktivierte Referral-Banner werden nun eingeblendet.";
186 case "0.2.1": // SQL queries for v0.2.1
187 // Update notes (these will be set as task text!)
188 $UPDATE_NOTES = "Problem mit überlanger Textbreite beseitigt.";
191 case "0.2.2": // SQL queries for v0.2.2
192 // Update notes (these will be set as task text!)
193 $UPDATE_NOTES = "Link zum Freischalten von Sponoren-Accounts korregiert.";
196 case "0.2.3": // SQL queries for v0.2.3
197 // Update notes (these will be set as task text!)
198 $UPDATE_NOTES = "Sortierungsreihenfolge grundlegend geändert: Es wird jetzt nach Mitglieder-ID, Aufgabenbereich, Infos und nach dem Erstellunsdatum sortiert.";
201 case "0.2.4": // SQL queries for v0.2.4
202 // Update notes (these will be set as task text!)
203 $UPDATE_NOTES = "Abspeichern von Einstellungen repariert.";
206 case "0.2.5": // SQL queries for v0.2.5
207 // Update notes (these will be set as task text!)
208 $UPDATE_NOTES = "<STRONG>Nur mit bonus v0.6.9 oder höher:</STRONG> Zuschaltbare Bonis werden auch bei der Ermittlung Anzahl teilnehmender Mitglieder mit ber&uumk;cksichtigt.";
211 case "0.2.6": // SQL queries for v0.2.6
212 // Update notes (these will be set as task text!)
213 $UPDATE_NOTES = "Teilnehmer der Bettel-Rallye werden angezeigt.";
216 case "0.2.7": // SQL queries for v0.2.7
217 // Update notes (these will be set as task text!)
218 $UPDATE_NOTES = "Link zum direkten Aufheben einer Urlaubsschaltung eines Mitgliedes korregiert.";
221 case "0.2.8": // SQL queries for v0.2.8
222 // Update notes (these will be set as task text!)
223 $UPDATE_NOTES = "Sicherheitsupdate für die Include-Befehle.";
226 case "0.2.9": // SQL queries for v0.2.9
227 // Update notes (these will be set as task text!)
228 $UPDATE_NOTES = "if-Anweisungen auf Funktion <STRONG>empty()</STRONG> umgestellt. Update-Aufgaben werden nach "Bearbeitung" nicht mehr als <STRONG>Erledigt</STRONG> gesetzt. Dies hatte sonst den Anschein, die Update-Aufgaben müssten erledigt werden, um die Erweiterungs-Updates einzuspielen, was aber automatisch geschieht.";
231 case "0.3.0": // SQL queries for v0.3.0
232 // Update notes (these will be set as task text!)
233 $UPDATE_NOTES = "Export-Accounts werden in Task-Übersicht aufgelistet.";
236 case "0.3.1": // SQL queries for v0.3.1
237 // Update notes (these will be set as task text!)
238 $UPDATE_NOTES = "Diverse Fixes an den Templates (Notice-Hinweise vom PHP-Interpreter entfernt).";
243 default: // Do stuff when extension is loaded
247 // Language file prefix
248 $EXT_LANG_PREFIX = "task";
250 // Extension is always active?
251 $EXT_ALWAYS_ACTIVE = "N";