9eb983342fd9caccdd8022ae9ca2e38ff2d09b03
[mailer.git] / inc / modules / admin / what-list_task.php
1 <?php
2 /************************************************************************
3  * MXChange v0.2.1                                    Start: 08/03/2004 *
4  * ================                             Last change: 08/07/2004 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : what-list_task.php                               *
8  * -------------------------------------------------------------------- *
9  * Short description : List all tasks                                   *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Alle Aufgaben auflisten                          *
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')) || (!IS_ADMIN())) {
36         $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
37         require($INC);
38 } elseif (!EXT_IS_ACTIVE("task")) {
39         ADD_FATAL(EXTENSION_PROBLEM_EXT_INACTIVE, "task");
40         return;
41 }
42
43 // Add description as navigation point
44 ADD_DESCR("admin", basename(__FILE__));
45
46 $whereStatement = "";
47 if (empty($_GET['type'])) $_GET['type'] = "your";
48
49 switch ($_GET['type'])
50 {
51 case "your": // List only your own open (new) tasks
52         $whereStatement = "assigned_admin='".GET_ADMIN_ID(get_session('admin_login'))."' AND status='NEW' AND task_type != 'EXTENSION_UPDATE'";
53         break;
54
55 case "updates": // List only updates assigned to you
56         $whereStatement = "assigned_admin='".GET_ADMIN_ID(get_session('admin_login'))."' AND status='NEW' AND task_type = 'EXTENSION_UPDATE'";
57         break;
58
59 case "solved": // List only solved tasks assigned to you
60         $whereStatement = "assigned_admin='".GET_ADMIN_ID(get_session('admin_login'))."' AND status='SOLVED'";
61         break;
62
63 case "unassigned": // List unassigned (but not deleted) tasks
64         $whereStatement = "assigned_admin='0' AND status != 'DELETED'";
65         break;
66
67 case "deleted": // List all deleted
68         $whereStatement = "status='DELETED'";
69         break;
70
71 case "closed": // List all closed
72         $whereStatement = "assigned_admin='".GET_ADMIN_ID(get_session('admin_login'))."' AND status='CLOSED'";
73         break;
74
75 default: // Unknown type
76         LOAD_TEMPLATE("admin_settings_saved", false, TASK_ADMIN_UNKNOWN_MODE_1.$_GET['type'].TASK_ADMIN_UNKNOWN_MODE_2);
77         break;
78 }
79
80 if (!empty($whereStatement))
81 {
82         $SEL = 0;
83         if (isset($_POST['task'])) $SEL = SELECTION_COUNT($_POST['task']);
84         if ((isset($_POST['assign'])) && ($SEL > 0)) {
85                 // Assign / do tasks
86                 require_once(PATH."inc/modules/admin/overview-inc.php");
87                 if (empty($dmy)) $dmy = "";
88                 OUTPUT_SELECTED_TASKS($_POST, $dmy);
89         } else {
90                 // Start listing tasks matching selected filter
91                 $result_tasks = SQL_QUERY("SELECT id, assigned_admin, userid, task_type, subject, text, task_created
92 FROM "._MYSQL_PREFIX."_task_system
93 WHERE ".$whereStatement."
94 ORDER BY userid DESC, task_type DESC, subject, task_created DESC", __FILE__, __LINE__);
95                 if (($SEL > 0) && (!IS_DEMO())) {
96                         // Only unassign / delete tasks when there are selected tasks posted
97                         if (isset($_POST['unassign'])) {
98                                 // Unassign from tasks
99                                 foreach ($_POST['task'] as $id => $sel) {
100                                         $result = SQL_QUERY_ESC("UPDATE "._MYSQL_PREFIX."_task_system SET assigned_admin=0 WHERE id=%s AND assigned_admin=%s LIMIT 1",
101                                          array(bigintval($id), GET_ADMIN_ID(get_session('admin_login'))), __FILE__, __LINE__);
102                                 }
103                         } elseif (isset($_POST['del'])) {
104                                 // Delete tasks
105                                 foreach ($_POST['task'] as $id => $sel) {
106                                         if ($_GET['type'] == "deleted") {
107                                                 // Delete task immediately
108                                                 $result = SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM "._MYSQL_PREFIX."_task_system WHERE id=%s LIMIT 1",
109                                                  array(bigintval($id)),__FILE__, __LINE__);
110                                         } else {
111                                                 // Mark task as to be deleted (purged by autppurge extension)
112                                                 ADMIN_DELETE_TASK($id);
113                                         }
114                                 }
115                         }
116
117                         // Update query
118                         $result_tasks = SQL_QUERY("SELECT id, assigned_admin, userid, task_type, subject, text, task_created FROM "._MYSQL_PREFIX."_task_system WHERE ".$whereStatement." ORDER BY subject, task_created DESC", __FILE__, __LINE__);
119                 }
120
121                 // There are uncompleted jobs!
122                 $eval = "\$type = ADMIN_OVERVIEW_TASK_".strtoupper($_GET['type'])."_TYPE;";
123                 eval($eval);
124                 LOAD_TEMPLATE("admin_overview_header_task", false, array(
125                         'message' => $type,
126                         'type'    => $_GET['type']
127                 ));
128                 $SW = 2;
129                 while (list($id, $admin, $uid, $type, $subj, $text, $created) = SQL_FETCHROW($result_tasks))
130                 {
131                         $infos = "---";
132                         if ($admin == "0")
133                         {
134                                 // No admin currently is assigned
135                                 $admin = "<FONT class=\"admin_note\">".ADMIN_NO_ADMIN_ASSIGNED."</FONT>";
136                         }
137                          else
138                         {
139                                 // Load admin's data
140                                 $login = GET_ADMIN_LOGIN($admin);
141                                 if ($login != "***")
142                                 {
143                                         // Admin found
144                                         $admin = "<A href=\"".URL."/modules.php?module=admin&amp;what=admins_contct&amp;admin=".$admin."\">".$login."</A>";
145                                 }
146                                  else
147                                 {
148                                         // Maybe deleted?
149                                         $admin = "<FONT class=\"admin_note\">".ADMIN_ID_404_1.$admin.ADMIN_ID_404_2."</FONT>";
150                                 }
151                         }
152                         $evl = "\$type_out = ADMIN_TASK_IS_".strtoupper($type).";";
153                         eval($evl);
154                         $type2 = substr($text, 0, strpos($text, ":"));
155                         // Generate infos
156                         switch ($type)
157                         {
158                         case "EXTENSION":
159                         case "EXTENSION_UPDATE":
160                                 $infos = substr($subj, 1, strpos($subj, ":") - 1);
161                                 break;
162                         }
163                         if ($uid > 0)
164                         {
165                                 // Member found otherwise it's a system task
166                                 $uid = ADMIN_USER_PROFILE_LINK($uid);
167                         }
168                          else
169                         {
170                                 $uid = "<I>".ADMIN_IS_SYSTEM_TASK."</I>";
171                         }
172                         $content = array(
173                                 'sw'      => $SW,
174                                 'id'      => $id,
175                                 'admin'   => $admin,
176                                 'infos'   => $infos,
177                                 'uid'     => $uid,
178                                 'type'    => $type_out,
179                                 'created' => MAKE_DATETIME($created, "2")
180                         );
181                         LOAD_TEMPLATE("admin_list_task_rows", false, $content);
182                         $SW = 3 - $SW;
183                 }
184
185                 // Free memory
186                 SQL_FREERESULT($result_tasks);
187
188                 // Load footer template
189                 if ($_GET['type'] == "deleted")
190                 {
191                         // Delete now button
192                         LOAD_TEMPLATE("admin_overview_footer_task");
193                 }
194                  else
195                 {
196                         // Normal footer
197                         LOAD_TEMPLATE("admin_overview_footer");
198                 }
199         }
200 }
201 //
202 ?>