A lot CSS classes rewritten, please update all your themes.
[mailer.git] / inc / modules / admin / what-del_holiday.php
1 <?php
2 /************************************************************************
3  * Mailer v0.2.1-FINAL                                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  * 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')) || (!isAdmin())) {
42         die();
43 } // END - if
44
45 // Add description as navigation point
46 addMenuDescription('admin', __FILE__);
47
48 // Shall I delete selected holidays???
49 if (ifPostContainsSelections()) {
50         // Delete multiple holiday requests (for list_holiday)
51         $cnt = '0';
52         foreach (postRequestParameter('sel') as $id => $sel) {
53                 // Get the userid
54                 $result = SQL_QUERY_ESC("SELECT
55         `userid`, `holiday_start`, `holiday_end`
56 FROM
57         `{?_MYSQL_PREFIX?}_user_holidays`
58 WHERE
59         `id`=%s
60 LIMIT 1", array(bigintval($id)), __FILE__, __LINE__);
61                 if (SQL_NUMROWS($result) == 1) {
62                         // Load data and free memory
63                         $content = SQL_FETCHARRAY($result);
64
65                         // Update user's account
66                         SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_user_data`
67 SET
68         `holiday_active`='N',
69         `holiday_activated`=0
70 WHERE
71         `userid`=%s
72 LIMIT 1", array(bigintval($content['userid'])), __FILE__, __LINE__);
73
74                         // Remove holiday
75                         SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM
76         `{?_MYSQL_PREFIX?}_user_holidays`
77 WHERE
78         `id`=%s
79 LIMIT 1", array(bigintval($id)), __FILE__, __LINE__);
80
81                         // Prepare loaded data for the
82                         $content['holiday_start'] = generateDateTime($content['holiday_start'], 3);
83                         $content['holiday_end']   = generateDateTime($content['holiday_end']  , 3);
84
85                         // Send email to user
86                         $message = loadEmailTemplate('member_holiday_removed', $content, $content['userid']);
87                         sendEmail($content['userid'], '{--ADMIN_HOLIDAY_REMOVED_SUBJECT--}', $message);
88                         $cnt++;
89                 } // END - if
90
91                 // Free result
92                 SQL_FREERESULT($result);
93         } // END - foreach
94         loadTemplate('admin_settings_saved', false, getMaskedMessage('ADMIN_HOLIDAY_MULTI_DEL', $cnt));
95 } elseif (isGetRequestParameterSet('userid')) {
96         // Set default message
97         $message = '{--ADMIN_HOLIDAY_SINGLE_404--}';
98
99         // Fetch data
100         $result_load = SQL_QUERY_ESC("SELECT
101         `holiday_start` AS start, `holiday_end` AS `end`
102 FROM
103         `{?_MYSQL_PREFIX?}_user_holidays`
104 WHERE
105         `userid`=%s
106 LIMIT 1",
107                 array(bigintval(getRequestParameter('userid'))), __FILE__, __LINE__);
108         if (SQL_NUMROWS($result_load) == 1) {
109                 // Load data
110                 $content = SQL_FETCHARRAY($result_load);
111
112                 // Delete one holiday request (for task)
113                 SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM
114         `{?_MYSQL_PREFIX?}_user_holidays`
115 WHERE
116         `userid`=%s
117 LIMIT 1", array(bigintval(getRequestParameter('userid'))), __FILE__, __LINE__);
118
119                 // Send email to user
120                 $message = loadEmailTemplate('member_holiday_removed', $content, getRequestParameter('userid'));
121                 sendEmail(getRequestParameter('userid'), '{--ADMIN_HOLIDAY_REMOVED_SUBJECT--}', $message);
122
123                 // Set message
124                 $message = '{--ADMIN_HOLIDAY_SINGLE_DELETED--}';
125         } // END - if
126
127         // Free memory
128         SQL_FREERESULT($result_load);
129
130         // Output message
131         loadTemplate('admin_settings_saved', false, $message);
132 } else {
133         // Please call me over other scripts... ;)
134         loadTemplate('admin_settings_saved', false, '{--HOLIDAY_NO_DIRECT_CALL--}');
135 }
136
137 // [EOF]
138 ?>