2 /************************************************************************
3 * Mailer v0.2.1-FINAL Start: 12/10/2005 *
4 * =================== Last change: 06/20/2010 *
6 * -------------------------------------------------------------------- *
7 * File : daily_holiday.php *
8 * -------------------------------------------------------------------- *
9 * Short description : Things to be done on daily reset *
10 * -------------------------------------------------------------------- *
11 * Kurzbeschreibung : Dinge, die beim taeglichen Reset erledigt werden *
12 * -------------------------------------------------------------------- *
15 * $Tag:: 0.2.1-FINAL $ *
17 * -------------------------------------------------------------------- *
18 * Copyright (c) 2003 - 2009 by Roland Haeder *
19 * Copyright (c) 2009 - 2011 by Mailer Developer Team *
20 * For more information visit: http://www.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 ((!isHtmlOutputMode()) || ((!isResetModeEnabled()) && (getConfig('holiday_mode') == 'RESET'))) {
42 // Do not execute when script is in CSS mode or no daily reset
44 } elseif (!isExtensionActive('holiday')) {
45 logDebugMessage(__FILE__, __LINE__, 'Not resetting, needed extension disabled.');
50 //* DEBUG: */ logDebugMessage(__FILE__, __LINE__, 'Daily reset started.');
52 // Check for holidays we need to enable and send email to user
53 $result_main = SQL_QUERY("SELECT
54 `userid`, `holiday_activated`
56 `{?_MYSQL_PREFIX?}_user_data`
58 `holiday_activated` > 0 AND
59 `holiday_activated` < UNIX_TIMESTAMP() AND
62 `holiday_activated` ASC",
66 if (!SQL_HASZERONUMS($result_main)) {
70 // We have found at least one useraccount so let's check it...
71 while ($content = SQL_FETCHARRAY($result_main)) {
72 // Check if his holiday can be activated
73 $result_holiday = SQL_QUERY_ESC("SELECT
74 `holiday_start`, `holiday_end`
76 `{?_MYSQL_PREFIX?}_user_holidays`
79 `holiday_start` <= UNIX_TIMESTAMP() AND
80 `holiday_end` > UNIX_TIMESTAMP()
82 array(bigintval($content['userid'])), __FILE__, __LINE__);
84 // Do we have an entry?
85 if (SQL_NUMROWS($result_holiday) == 1) {
86 // Okay, this user can be send away to holiday...
87 $content = merge_array($content, SQL_FETCHARRAY($result_holiday));
89 // Prepare all data for the template
90 $content = merge_array($content, array(
91 'activated' => generateDateTime($content['holiday_activated'], 1),
92 'start' => generateDateTime($content['holiday_start'] , 1),
93 'end' => generateDateTime($content['holiday_end'] , 1)
97 $message = loadEmailTemplate('member_holiday_activated', $content, $content['userid']);
98 sendEmail($content['userid'], '{--MEMBER_HOLIDAY_ACTIVATED_SUBJECT--}', $message);
101 addSql(SQL_QUERY_ESC("UPDATE
102 `{?_MYSQL_PREFIX?}_user_data`
108 array(bigintval($content['userid'])), __FILE__, __LINE__, false));
112 SQL_FREERESULT($result_holiday);
116 runFilterChain('run_sqls');
120 SQL_FREERESULT($result_main);
122 // Stop currently activated holidays
126 //* DEBUG: */ logDebugMessage(__FILE__, __LINE__, 'Daily reset ended.');