2 /************************************************************************
3 * Mailer v0.2.1-FINAL Start: 07/24/2004 *
4 * =================== Last change: 07/31/2004 *
6 * -------------------------------------------------------------------- *
7 * File : what-holiday.php *
8 * -------------------------------------------------------------------- *
9 * Short description : Holiday requests *
10 * -------------------------------------------------------------------- *
11 * Kurzbeschreibung : Urlaubsschaltungen *
12 * -------------------------------------------------------------------- *
15 * $Tag:: 0.2.1-FINAL $ *
17 * -------------------------------------------------------------------- *
18 * Copyright (c) 2003 - 2009 by Roland Haeder *
19 * Copyright (c) 2009 - 2013 by Mailer Developer Team *
20 * For more information visit: http://mxchange.org *
22 * This program is free software; you can redistribute it and/or modify *
23 * it under the terms of the GNU General Public License as published by *
24 * the Free Software Foundation; either version 2 of the License, or *
25 * (at your option) any later version. *
27 * This program is distributed in the hope that it will be useful, *
28 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
29 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
30 * GNU General Public License for more details. *
32 * You should have received a copy of the GNU General Public License *
33 * along with this program; if not, write to the Free Software *
34 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, *
36 ************************************************************************/
38 // Some security stuff...
39 if (!defined('__SECURITY')) {
41 } elseif (!isMember()) {
42 redirectToIndexMemberOnlyModule();
45 // Add description as navigation point
46 addYouAreHereLink('member', __FILE__);
48 if ((!isExtensionActive('holiday')) && (!isAdmin())) {
49 displayMessage('{%pipe,generateExtensionInactiveNotInstalledMessage=holiday%}');
56 // Check for running mail orders in pool
57 $result1 = sqlQueryEscaped("SELECT
60 `{?_MYSQL_PREFIX?}_pool`
65 LIMIT 1", array(getMemberId()), __FILE__, __LINE__);
67 // Check for sent mail orders in stats
68 $result2 = sqlQueryEscaped("SELECT
71 `{?_MYSQL_PREFIX?}_user_stats`
75 `timestamp_ordered` DESC
76 LIMIT 1", array(getMemberId()), __FILE__, __LINE__);
78 if ((sqlNumRows($result1) == 1) || (sqlNumRows($result2) == 1)) {
80 $content = merge_array($content, sqlFetchArray($result1));
81 $content = merge_array($content, sqlFetchArray($result2));
83 // Fix missing entries
84 if (empty($content['timestamp'])) $content['timestamp'] = '0';
85 if (empty($content['timestamp_ordered'])) $content['timestamp_ordered'] = '0';
87 if ((($content['timestamp'] + getHolidayLock()) > time()) || (($content['timestamp_ordered'] + getHolidayLock()) > time())) {
88 // Mail order is to close away!
89 unsetPostRequestElement('ok');
90 unsetPostRequestElement('stop');
92 if (($content['timestamp'] + getHolidayLock()) > time()) {
94 $stamp = $content['timestamp'];
96 // Mail found in stats
97 $stamp = $content['timestamp_ordered'];
100 // Display message and exit here
101 displayMessage('{%message,MEMBER_HOLIDAY_ORDER', generateDateTime($stamp, '1') . '%}');
107 sqlFreeResult($result1);
108 sqlFreeResult($result2);
111 // Check holiday request...
112 $content['holiday_start'] = mktime(0, 0, 0, postRequestElement('start_mo'), postRequestElement('start_da'), postRequestElement('start_ye'));
113 $content['holiday_end'] = mktime(0, 0, 0, postRequestElement('end_mo') , postRequestElement('end_da') , postRequestElement('end_ye') );
116 $TEST = $content['holiday_end'] - $content['holiday_start'];
117 if (($TEST < 0) || ($TEST > (getOneDay() * getConfig('holiday_max'))) || ($content['holiday_start'] < time()) || ($content['holiday_end'] < time())) {
119 unsetPostRequestElement('ok');
121 // Everything went okay so let's store his request and send mails
122 sqlQueryEscaped("INSERT INTO `{?_MYSQL_PREFIX?}_user_holidays` (`userid`, `holiday_start`, `holiday_end`, `comments`) VALUES ('%s','%s','%s','%s')",
125 $content['holiday_start'],
126 $content['holiday_end'],
127 postRequestElement('comments')
128 ), __FILE__, __LINE__);
130 // Activate holiday system
131 sqlQueryEscaped("UPDATE
132 `{?_MYSQL_PREFIX?}_user_data`
134 `holiday_active`='N',
135 `holiday_activated`=UNIX_TIMESTAMP()
139 array(getMemberId()), __FILE__, __LINE__);
142 $content['start_day'] = bigintval(postRequestElement('start_day'));
143 $content['start_month'] = $GLOBALS['month_descr'][postRequestElement('start_month')];
144 $content['start_year'] = bigintval(postRequestElement('start_year'));
145 $content['end_day'] = bigintval(postRequestElement('end_day'));
146 $content['end_month'] = $GLOBALS['month_descr'][postRequestElement('end_month')];
147 $content['end_year'] = bigintval(postRequestElement('end_year'));
148 $content['comments'] = postRequestElement('comments');
150 // Send mail to member
151 $message = loadEmailTemplate('member_holiday_request', $content, getMemberId());
152 sendEmail(getMemberId(), '{--MEMBER_HOLIDAY_SUBJECT--}', $message);
154 // Send mail to all admins
155 sendAdminNotification('{--ADMIN_HOLIDAY_SUBJECT--}', 'admin_holiday_request', $content, getMemberId());
157 // Create task (we ignore the task id here)
158 createNewTask('{--ADMIN_HOLIDAY_SUBJECT--}', $message, 'HOLIDAY_REQUEST', getMemberId());
161 displayMessage('{--MEMBER_HOLIDAY_IS_ACTIVATED_NOW--}');
165 // Holiday shall be ended now
166 if (isPostRequestElementSet('stop')) {
167 // Okay, end the holiday here...
168 $result = sqlQueryEscaped("SELECT
172 `{?_MYSQL_PREFIX?}_user_data`
175 LIMIT 1", array(getMemberId()), __FILE__, __LINE__);
177 // Is there an entry?
178 if (sqlNumRows($result) == 1) {
180 $content = merge_array($content, sqlFetchArray($result));
182 if (($content['holiday_active'] == 'Y') && (($content['holiday_activated'] + getHolidayLock()) < time())) {
184 $result2 = sqlQueryEscaped("SELECT
188 `{?_MYSQL_PREFIX?}_user_holidays`
191 LIMIT 1", array(getMemberId()), __FILE__, __LINE__);
192 if (sqlNumRows($result2) == 1) {
193 // Data was found so merge it
194 $content = merge_array($content, sqlFetchArray($result2));
196 // Prepare it for the template
197 $content['start'] = generateDateTime($content['holiday_start'], 3);
198 $content['end'] = generateDateTime($content['holiday_end'] , 3);
201 sqlQueryEscaped("UPDATE
202 `{?_MYSQL_PREFIX?}_user_data`
204 `holiday_active`='N',
205 `holiday_activated`=0
209 array(getMemberId()), __FILE__, __LINE__);
212 sqlQueryEscaped("DELETE LOW_PRIORITY FROM
213 `{?_MYSQL_PREFIX?}_user_holidays`
217 array(getMemberId()), __FILE__, __LINE__);
219 // Send email to admin
220 sendAdminNotification('{--ADMIN_HOLIDAY_DEACTIVATED_SUBJECT--}', 'admin_holiday_deactivated', $content, getMemberId());
222 // Display message to user
223 displayMessage('{--MEMBER_HOLIDAY_DEACTIVATED_NOW--}');
225 // Display message to user
226 displayMessage('{--MEMBER_HOLIDAY_CANNOT_DEACTIVATE--}');
230 sqlFreeResult($result2);
231 } elseif ($content['holiday_active'] == 'Y') {
233 displayMessage('{--MEMBER_HOLIDAY_LOCKED--}');
237 displayMessage('{--MEMBER_HOLIDAY_NOT_STOPPED_404--}');
241 sqlFreeResult($result);
244 // If something is wrong or link in menu is just clicked display form
245 if ((!isFormSent()) && (!isPostRequestElementSet('stop'))) {
246 // Check if user is in holiday...
247 $result = sqlQueryEscaped("SELECT
251 `{?_MYSQL_PREFIX?}_user_data`
254 LIMIT 1", array(getMemberId()), __FILE__, __LINE__);
255 $content = sqlFetchArray($result);
256 sqlFreeResult($result);
259 if (($content['holiday_activated'] + getHolidayLock()) < time()) {
260 // User can deactivate his holiday request
261 switch ($content['holiday_active']) {
262 case 'Y': // Display deactivation form
263 // Load starting and ending date
264 $result = sqlQueryEscaped("SELECT
268 `{?_MYSQL_PREFIX?}_user_holidays`
271 LIMIT 1", array(getMemberId()), __FILE__, __LINE__);
272 if (sqlNumRows($result) == 1) {
273 // Data was found so merge it
274 $content = merge_array($content, sqlFetchArray($result));
276 // Prepare it for the template
277 $content['start'] = generateDateTime($content['holiday_start'] , 3);
278 $content['end'] = generateDateTime($content['holiday_end'] , 3);
279 $content['lock'] = generateDateTime($content['holiday_activated'], 1);
282 loadTemplate('member_holiday_deactivate', FALSE, $content);
285 sqlFreeResult($result);
287 // Remove entry and reload URL
288 sqlQueryEscaped("UPDATE
289 `{?_MYSQL_PREFIX?}_user_data`
295 array(getMemberId()), __FILE__, __LINE__);
296 redirectToUrl('modules.php?module=login&what=holiday');
301 sqlFreeResult($result);
304 case 'N': // Display activation form
306 $startingStamp = time() + getOneDay();
307 $endingStamp = $startingStamp + (getOneDay() * getConfig('holiday_max'));
310 $content['start_day'] = addSelectionBox('da', getDay($startingStamp) , 'start');
311 $content['start_month'] = addSelectionBox('mo', getMonth($startingStamp), 'start');
312 $content['start_year'] = addSelectionBox('ye', getYear($startingStamp) , 'start');
315 $content['end_day'] = addSelectionBox('da', getDay($endingStamp) , 'end');
316 $content['end_month'] = addSelectionBox('mo', getMonth($endingStamp), 'end');
317 $content['end_year'] = addSelectionBox('ye', getYear($endingStamp) , 'end');
320 loadTemplate('member_holiday_form', FALSE, $content);
325 displayMessage('{--MEMBER_HOLIDAY_LOCKED--}');