c2d909b56856fa41c239b7e2991cf02b274134e6
[mailer.git] / inc / extensions / ext-task.php
1 <?php
2 /************************************************************************
3  * MXChange v0.2.1                                    Start: 07/10/2004 *
4  * ================                             Last change: 09/29/2004 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : ext-task.php                                     *
8  * -------------------------------------------------------------------- *
9  * Short description : Task management                                  *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Aufgabenverwaltung                               *
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.3.1";
42
43 // Auto-set extension version
44 if (empty($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", "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");
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[] = "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'";
56
57         // Enable CSS file?
58         $EXT_CSS = "Y";
59         break;
60
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";
64         break;
65
66 case "activate": // Do stuff when admin activates this extension
67         // SQL commands to run
68         $SQLs[] = "";
69         break;
70
71 case "deactivate": // Do stuff when admin deactivates this extension
72         // SQL commands to run
73         $SQLs[] = "";
74         break;
75
76 case "update": // Update an extension
77         switch ($EXT_VER)
78         {
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";
81
82                 // This update depends on sql_patches update!
83                 $EXT_UPDATE_DEPENDS = "sql_patches";
84
85                 // Update notes (these will be set as task text!)
86                 $UPDATE_NOTES = "CSS-Datei kann per Admin-Bereich ein- und ausgeschaltet werden.";
87                 break;
88
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&ouml;tige Script-Teile aus what-list_tasks.php herausgel&ouml;scht; beim Anzeigen einer Extension-Update, oder -Register Aufgabe werden bei eingeschaltetem Verbose-Modus alle SQL-Anweisungen aufgelistet.";
92                 break;
93
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.";
97                 break;
98
99         case "0.0.5": // SQL queries for v0.0.5
100                 // Update notes (these will be set as task text!)
101                 $UPDATE_NOTES = "&amp;admin= in &amp;amp;admin= umgewandelt.";
102                 break;
103
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&auml;ndert.";
107                 break;
108
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-&Uuml;bersichten verbessert.";
112                 break;
113
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.";
117                 break;
118
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.";
122                 break;
123
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";
127                 break;
128
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 &quot;Solid-Business&quot; eingebaut.";
132                 break;
133
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> &uuml;berfl&uuml;ssige HTML-Tags entfernt.";
137                 break;
138
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.";
142                 break;
143
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&ouml;rter <STRONG>Mailtausch</STRONG>, <STRONG>Mailtausches</STRONG> und <STRONG>Mailtauscher</STRONG> sind austauschbar.";
147                 break;
148
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&auml;ndert.";
152                 break;
153
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 />
157 <UL>
158   <LI>L&auml;ndercodes</LI>
159   <LI>Wartende Verdopplungen</LI>
160   <LI><STRONG>Ge&auml;ndert:</STRONG> Wartende Auszahlungen</LI>
161   <LI>Teilnehmer an der Aktiv-Rallye</LI>
162   <LI>Nett hinweisende Linktitel hinzugef&uuml;gt. :-)</LI>
163 </UL>";
164                 break;
165
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.";
169                 break;
170
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.";
174                 break;
175
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!)";
179                 break;
180
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.";
184                 break;
185
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 &uuml;berlanger Textbreite beseitigt.";
189                 break;
190
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.";
194                 break;
195
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&auml;ndert: Es wird jetzt nach Mitglieder-ID, Aufgabenbereich, Infos und nach dem Erstellunsdatum sortiert.";
199                 break;
200
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.";
204                 break;
205
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&ouml;her:</STRONG> Zuschaltbare Bonis werden auch bei der Ermittlung Anzahl teilnehmender Mitglieder mit ber&uumk;cksichtigt.";
209                 break;
210
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.";
214                 break;
215
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.";
219                 break;
220
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&uuml;r die Include-Befehle.";
224                 break;
225
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 &quot;Bearbeitung&quot; nicht mehr als <STRONG>Erledigt</STRONG> gesetzt. Dies hatte sonst den Anschein, die Update-Aufgaben m&uuml;ssten erledigt werden, um die Erweiterungs-Updates einzuspielen, was aber automatisch geschieht.";
229                 break;
230
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-&Uuml;bersicht aufgelistet.";
234                 break;
235
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).";
239                 break;
240         }
241         break;
242
243 default: // Do stuff when extension is loaded
244         break;
245 }
246
247 // Language file prefix
248 $EXT_LANG_PREFIX = "task";
249
250 // Extension is always active?
251 $EXT_ALWAYS_ACTIVE = "N";
252
253 //
254 ?>