More rewrites, and output-mode fixed (we should documentate this)
[mailer.git] / inc / modules / admin / what-del_holiday.php
1 <?php
2 /************************************************************************
3  * MXChange v0.2.1                                    Start: 07/24/2004 *
4  * ================                             Last change: 08/09/2004 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : what-del_holiday.php                             *
8  * -------------------------------------------------------------------- *
9  * Short description : Remove holiday requests                          *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Urlaubsschaltungen entfernen                     *
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')) || (!isAdmin())) {
41         die();
42 }
43
44 // Add description as navigation point
45 addMenuDescription('admin', __FILE__);
46
47 // Check for selected holidays
48 $SUM = 0;
49 if (isPostRequestElementSet('sel')) $SUM = countPostSelection();
50
51 // Shall I delete selected holidays???
52 if ($SUM > 0) {
53         // Delete multiple holiday requests (for list_holiday)
54         $cnt = 0;
55         foreach (postRequestElement('sel') as $id => $sel) {
56                 // Get the userid
57                 $result = SQL_QUERY_ESC("SELECT userid, holiday_start, holiday_end
58 FROM `{?_MYSQL_PREFIX?}_user_holidays`
59 WHERE `id`=%s LIMIT 1", array(bigintval($id)), __FILE__, __LINE__);
60                 if (SQL_NUMROWS($result) == 1) {
61                         // Load data and free memory
62                         list($userid, $start, $end) = SQL_FETCHROW($result);
63                         SQL_FREERESULT($result);
64
65                         // Update user's account
66                         SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_user_data`
67 SET `holiday_active`='N', holiday_activated=0
68 WHERE `userid`=%s LIMIT 1", array(bigintval($userid)), __FILE__, __LINE__);
69
70                         // Remove holiday
71                         SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_user_holidays`
72 WHERE `id`=%s LIMIT 1", array(bigintval($id)), __FILE__, __LINE__);
73
74                         // Prepare loaded data for the
75                         $content = array(
76                                 'start' => generateDateTime($start, 3),
77                                 'end'   => generateDateTime($end  , 3)
78                         );
79
80                         // Send email to user
81                         $message = loadEmailTemplate('member_holiday_removed', $content, $userid);
82                         sendEmail($userid, getMessage('HOLIDAY_ADMIN_REMOVED_SUBJ'), $message);
83                         $cnt++;
84                 }
85         }
86         loadTemplate('admin_settings_saved', false, sprintf(getMessage('HOLIDAY_ADMIN_MULTI_DEL'), $cnt));
87 } elseif (isGetRequestElementSet('userid')) {
88         // Set default message
89         $message = getMessage('HOLIDAY_ADMIN_SINGLE_404');
90
91         // Fetch data
92         $result_load = SQL_QUERY_ESC("SELECT
93         `holiday_start` AS start, `holiday_end` AS end
94 FROM
95         `{?_MYSQL_PREFIX?}_user_holidays`
96 WHERE
97         `userid`=%s
98 LIMIT 1",
99                 array(bigintval(getRequestElement('userid'))), __FILE__, __LINE__);
100         if (SQL_NUMROWS($result_load) == 1) {
101                 // Load data
102                 $content = SQL_FETCHARRAY($result_load);
103
104                 // Delete one holiday request (for task)
105                 SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM
106         `{?_MYSQL_PREFIX?}_user_holidays`
107 WHERE
108         `userid`=%s
109 LIMIT 1", array(bigintval(getRequestElement('userid'))), __FILE__, __LINE__);
110
111                 // Send email to user
112                 $message = loadEmailTemplate('member_holiday_removed', $content, getRequestElement('userid'));
113                 sendEmail(getRequestElement('userid'), getMessage('HOLIDAY_ADMIN_REMOVED_SUBJ'), $message);
114
115                 // Set message
116                 $message = getMessage('HOLIDAY_ADMIN_SINGLE_DELETED');
117         }
118
119         // Free memory
120         SQL_FREERESULT($result_load);
121
122         // Output message
123         loadTemplate('admin_settings_saved', false, $message);
124 } else {
125         // Please call me over other scripts... ;)
126         loadTemplate('admin_settings_saved', false, getMessage('HOLIDAY_NO_DIRECT_CALL'));
127 }
128
129 //
130 ?>