X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fdaily%2Fdaily_holiday.php;h=10272130f49c2417545e065dfc6754a83fb9f84c;hb=4373e155854012d687fdfcae4c69d1a940883fab;hp=f091c5c2ddbc5b77e490e09b7b765aa6066913c5;hpb=de0c8d04d89614de9deca7be6b6acbe41f500280;p=mailer.git diff --git a/inc/daily/daily_holiday.php b/inc/daily/daily_holiday.php index f091c5c2dd..10272130f4 100644 --- a/inc/daily/daily_holiday.php +++ b/inc/daily/daily_holiday.php @@ -10,13 +10,8 @@ * -------------------------------------------------------------------- * * Kurzbeschreibung : Dinge, die beim taeglichen Reset erledigt werden * * -------------------------------------------------------------------- * - * $Revision:: $ * - * $Date:: $ * - * $Tag:: 0.2.1-FINAL $ * - * $Author:: $ * - * -------------------------------------------------------------------- * * Copyright (c) 2003 - 2009 by Roland Haeder * - * Copyright (c) 2009 - 2012 by Mailer Developer Team * + * Copyright (c) 2009 - 2013 by Mailer Developer Team * * For more information visit: http://mxchange.org * * * * This program is free software; you can redistribute it and/or modify * @@ -38,19 +33,19 @@ // Some security stuff... if (!defined('__SECURITY')) { die(); -} elseif ((!isHtmlOutputMode()) || ((!isResetModeEnabled()) && (getConfig('holiday_mode') == 'RESET'))) { - // Do not execute when script is in CSS mode or no daily reset +} elseif ((!isHtmlOutputMode()) || ((!isDailyResetEnabled()) && (getConfig('holiday_mode') == 'RESET'))) { + // Do not execute when script is in non-HTML mode or no daily reset return; } elseif (!isExtensionActive('holiday')) { - logDebugMessage(__FILE__, __LINE__, 'Not resetting, needed extension ext-holiday disabled'); + if (isDebugModeEnabled()) logDebugMessage(__FILE__, __LINE__, 'Not resetting, needed extension ext-holiday disabled.'); return; } // Debug line -//* DEBUG: */ logDebugMessage(__FILE__, __LINE__, 'Daily reset started'); +//* DEBUG: */ logDebugMessage(__FILE__, __LINE__, 'Daily reset started.'); // Check for holidays we need to enable and send email to user -$result_main = SQL_QUERY("SELECT +$result_main = sqlQuery("SELECT `userid`, `holiday_activated` FROM @@ -64,14 +59,14 @@ ORDER BY __FILE__, __LINE__); // Entries found? -if (!SQL_HASZERONUMS($result_main)) { +if (!ifSqlHasZeroNums($result_main)) { // Init SQLs initSqls(); // We have found at least one useraccount so let's check it... - while ($content = SQL_FETCHARRAY($result_main)) { + while ($content = sqlFetchArray($result_main)) { // Check if his holiday can be activated - $result_holiday = SQL_QUERY_ESC("SELECT + $result_holiday = sqlQueryEscaped("SELECT `holiday_start`, `holiday_end` FROM @@ -84,9 +79,9 @@ LIMIT 1", array(bigintval($content['userid'])), __FILE__, __LINE__); // Is there an entry? - if (SQL_NUMROWS($result_holiday) == 1) { + if (sqlNumRows($result_holiday) == 1) { // Okay, this user can be send away to holiday... - $content = merge_array($content, SQL_FETCHARRAY($result_holiday)); + $content = merge_array($content, sqlFetchArray($result_holiday)); // Prepare all data for the template $content = merge_array($content, array( @@ -100,7 +95,7 @@ LIMIT 1", sendEmail($content['userid'], '{--MEMBER_HOLIDAY_ACTIVATED_SUBJECT--}', $message); // Update account - addSql(SQL_QUERY_ESC("UPDATE + addSql(sqlQueryEscaped("UPDATE `{?_MYSQL_PREFIX?}_user_data` SET `holiday_active`='Y' @@ -111,7 +106,7 @@ LIMIT 1", } // END - if // Free memory - SQL_FREERESULT($result_holiday); + sqlFreeResult($result_holiday); } // END - while // Run all SQLs @@ -119,13 +114,13 @@ LIMIT 1", } // END - if // Free memory -SQL_FREERESULT($result_main); +sqlFreeResult($result_main); // Stop currently activated holidays stopHolidays(); // Debug line -//* DEBUG: */ logDebugMessage(__FILE__, __LINE__, 'Daily reset ended'); +//* DEBUG: */ logDebugMessage(__FILE__, __LINE__, 'Daily reset ended.'); // [EOF] ?>