2 /************************************************************************
3 * Mailer v0.2.1-FINAL Start: 07/31/2003 *
4 * =================== Last change: 08/02/2003 *
6 * -------------------------------------------------------------------- *
7 * File : holiday_functions.php *
8 * -------------------------------------------------------------------- *
9 * Short description : Functions for the admins extension *
10 * -------------------------------------------------------------------- *
11 * Kurzbeschreibung : Funktionen fuer die admins-Erweiterung *
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')) {
43 // Stops all expired holidays
44 function stopHolidays () {
45 // Let's find some expired holiday requests...
46 $result_stop = sqlQuery("SELECT
52 `{?_MYSQL_PREFIX?}_user_holidays`
54 `holiday_end` <= UNIX_TIMESTAMP()
56 `userid` ASC", __FUNCTION__, __LINE__);
57 if (!ifSqlHasZeroNums($result_stop)) {
58 // We foud at least one
64 // Process all found entries
65 while ($content = sqlFetchArray($result_stop)) {
67 addSql(sqlQueryEscaped("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_user_holidays` WHERE `userid`=%s LIMIT 1",
68 array(bigintval($content['userid'])), __FUNCTION__, __LINE__, FALSE));
71 addSql(sqlQueryEscaped("UPDATE
72 `{?_MYSQL_PREFIX?}_user_data`
79 array(bigintval($content['userid'])), __FUNCTION__, __LINE__, FALSE));
82 $content = merge_array($content, array(
83 'holiday_end' => generateDateTime($content['holiday_end'] , 3),
84 'holiday_start' => generateDateTime($content['holiday_start'], 3),
85 'holiday_comments' => $content['comments']
89 $message = loadEmailTemplate('member_holiday_unlock', $content, $content['userid']);
90 sendEmail($content['userid'], '{--MEMBER_HOLIDAY_UNLOCK_SUBJECT--}', $message);
92 // Remember userid for admin
93 $admin .= $content['userid'] . PHP_EOL;
96 // Send mail to admins
97 sendAdminNotification('{--ADMIN_HOLIDAY_UNLOCK_SUBJECT--}', 'admin_holiday_unlock', $admin);
100 runFilterChain('run_sqls');
104 sqlFreeResult($result_stop);
107 // ----------------------------------------------------------------------------
108 // Wrapper functions for configuration entries
109 // ----------------------------------------------------------------------------
111 // Getter for user_alpha
112 function getHolidayLock () {
114 if (!isset($GLOBALS[__FUNCTION__])) {
116 $GLOBALS[__FUNCTION__] = getConfig('holiday_lock');
120 return $GLOBALS[__FUNCTION__];