]> git.mxchange.org Git - mailer.git/blobdiff - 0.2.1/inc/libs/holiday_functions.php
win32 to unix line delimiters changed
[mailer.git] / 0.2.1 / inc / libs / holiday_functions.php
index 64ae52fda206837c9db5d672b759912e3f2c9c5d..5e10287d2f9b267d072c740c707f8da50232a933 100644 (file)
@@ -1,97 +1,97 @@
-<?php\r
-/************************************************************************\r
- * MXChange v0.2.1                                    Start: 07/31/2003 *\r
- * ===============                              Last change: 08/02/2003 *\r
- *                                                                      *\r
- * -------------------------------------------------------------------- *\r
- * File              : holiday_functions.php                            *\r
- * -------------------------------------------------------------------- *\r
- * Short description : Functions for the admins extension               *\r
- * -------------------------------------------------------------------- *\r
- * Kurzbeschreibung  : Funktionen fuer die admins-Erweiterung           *\r
- * -------------------------------------------------------------------- *\r
- *                                                                      *\r
- * -------------------------------------------------------------------- *\r
- * Copyright (c) 2003 - 2008 by Roland Haeder                           *\r
- * For more information visit: http://www.mxchange.org                  *\r
- *                                                                      *\r
- * This program is free software; you can redistribute it and/or modify *\r
- * it under the terms of the GNU General Public License as published by *\r
- * the Free Software Foundation; either version 2 of the License, or    *\r
- * (at your option) any later version.                                  *\r
- *                                                                      *\r
- * This program is distributed in the hope that it will be useful,      *\r
- * but WITHOUT ANY WARRANTY; without even the implied warranty of       *\r
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *\r
- * GNU General Public License for more details.                         *\r
- *                                                                      *\r
- * You should have received a copy of the GNU General Public License    *\r
- * along with this program; if not, write to the Free Software          *\r
- * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *\r
- * MA  02110-1301  USA                                                  *\r
- ************************************************************************/\r
-\r
-// Some security stuff...\r
-if (ereg(basename(__FILE__), $_SERVER['PHP_SELF']))\r
-{\r
-       $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";\r
-       require($INC);\r
-}\r
-//\r
-function HOLIDAY_STOP_HOLIDAYS()\r
-{\r
-       // Let's find some expired holiday requests...\r
-       $result_stop = SQL_QUERY("SELECT userid, holiday_start, holiday_end, comments\r
-FROM "._MYSQL_PREFIX."_user_holidays\r
-WHERE holiday_end <= ".time()."\r
-ORDER BY userid", __FILE__, __LINE__);\r
-       if (SQL_NUMROWS($result_stop) > 0)\r
-       {\r
-               // We foud at least one\r
-               $admin = "";\r
-               while (list($uid, $start, $end, $comments) = SQL_FETCHROW($result_stop))\r
-               {\r
-                       // Stop holiday\r
-                       $result_del = SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM "._MYSQL_PREFIX."_user_holidays WHERE userid=%d LIMIT 1",\r
-                        array(bigintval($uid)), __FILE__, __LINE__);\r
-\r
-                       // Unlock account\r
-                       $result_del = SQL_QUERY_ESC("UPDATE "._MYSQL_PREFIX."_user_data\r
-SET holiday_active='N', holiday_activated='0'\r
-WHERE userid=%d LIMIT 1", array(bigintval($uid)), __FILE__, __LINE__);\r
-\r
-                       // Prepare array\r
-                       $content = array(\r
-                               'holiday_end'      => MAKE_DATETIME($end  , "3"),\r
-                               'holiday_start'    => MAKE_DATETIME($start, "3"),\r
-                               'holiday_comments' => $comments\r
-                       );\r
-\r
-                       // Send mail to user\r
-                       $msg = LOAD_EMAIL_TEMPLATE("member_holiday_unlock", $content, $uid);\r
-                       SEND_EMAIL($uid, HOLIDAY_MEMBER_UNLOCK_SUBJ, $msg);\r
-\r
-                       // Remember userid for admin\r
-                       $admin .= $uid."\n";\r
-               }\r
-\r
-               // Send mail to admins\r
-               if (GET_EXT_VERSION("admins") >= "0.4.1")\r
-               {\r
-                       // Use new system\r
-                       SEND_ADMIN_EMAILS_PRO(HOLIDAY_ADMIN_UNLOCK_SUBJ, "admin_holiday_unlock", $admin, "0");\r
-               }\r
-                else\r
-               {\r
-                       // Use old system\r
-                       $msg = LOAD_EMAIL_TEMPLATE("admin_holiday_unlock", $admin, "0");\r
-                       SEND_ADMIN_EMAILS(HOLIDAY_ADMIN_UNLOCK_SUBJ, $msg);\r
-               }\r
-       }\r
-\r
-       // Free memory\r
-       SQL_FREERESULT($result_stop);\r
-}\r
-\r
-//\r
-?>\r
+<?php
+/************************************************************************
+ * MXChange v0.2.1                                    Start: 07/31/2003 *
+ * ===============                              Last change: 08/02/2003 *
+ *                                                                      *
+ * -------------------------------------------------------------------- *
+ * File              : holiday_functions.php                            *
+ * -------------------------------------------------------------------- *
+ * Short description : Functions for the admins extension               *
+ * -------------------------------------------------------------------- *
+ * Kurzbeschreibung  : Funktionen fuer die admins-Erweiterung           *
+ * -------------------------------------------------------------------- *
+ *                                                                      *
+ * -------------------------------------------------------------------- *
+ * Copyright (c) 2003 - 2008 by Roland Haeder                           *
+ * For more information visit: http://www.mxchange.org                  *
+ *                                                                      *
+ * This program is free software; you can redistribute it and/or modify *
+ * it under the terms of the GNU General Public License as published by *
+ * the Free Software Foundation; either version 2 of the License, or    *
+ * (at your option) any later version.                                  *
+ *                                                                      *
+ * This program is distributed in the hope that it will be useful,      *
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
+ * GNU General Public License for more details.                         *
+ *                                                                      *
+ * You should have received a copy of the GNU General Public License    *
+ * along with this program; if not, write to the Free Software          *
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
+ * MA  02110-1301  USA                                                  *
+ ************************************************************************/
+
+// Some security stuff...
+if (ereg(basename(__FILE__), $_SERVER['PHP_SELF']))
+{
+       $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
+       require($INC);
+}
+//
+function HOLIDAY_STOP_HOLIDAYS()
+{
+       // Let's find some expired holiday requests...
+       $result_stop = SQL_QUERY("SELECT userid, holiday_start, holiday_end, comments
+FROM "._MYSQL_PREFIX."_user_holidays
+WHERE holiday_end <= ".time()."
+ORDER BY userid", __FILE__, __LINE__);
+       if (SQL_NUMROWS($result_stop) > 0)
+       {
+               // We foud at least one
+               $admin = "";
+               while (list($uid, $start, $end, $comments) = SQL_FETCHROW($result_stop))
+               {
+                       // Stop holiday
+                       $result_del = SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM "._MYSQL_PREFIX."_user_holidays WHERE userid=%d LIMIT 1",
+                        array(bigintval($uid)), __FILE__, __LINE__);
+
+                       // Unlock account
+                       $result_del = SQL_QUERY_ESC("UPDATE "._MYSQL_PREFIX."_user_data
+SET holiday_active='N', holiday_activated='0'
+WHERE userid=%d LIMIT 1", array(bigintval($uid)), __FILE__, __LINE__);
+
+                       // Prepare array
+                       $content = array(
+                               'holiday_end'      => MAKE_DATETIME($end  , "3"),
+                               'holiday_start'    => MAKE_DATETIME($start, "3"),
+                               'holiday_comments' => $comments
+                       );
+
+                       // Send mail to user
+                       $msg = LOAD_EMAIL_TEMPLATE("member_holiday_unlock", $content, $uid);
+                       SEND_EMAIL($uid, HOLIDAY_MEMBER_UNLOCK_SUBJ, $msg);
+
+                       // Remember userid for admin
+                       $admin .= $uid."\n";
+               }
+
+               // Send mail to admins
+               if (GET_EXT_VERSION("admins") >= "0.4.1")
+               {
+                       // Use new system
+                       SEND_ADMIN_EMAILS_PRO(HOLIDAY_ADMIN_UNLOCK_SUBJ, "admin_holiday_unlock", $admin, "0");
+               }
+                else
+               {
+                       // Use old system
+                       $msg = LOAD_EMAIL_TEMPLATE("admin_holiday_unlock", $admin, "0");
+                       SEND_ADMIN_EMAILS(HOLIDAY_ADMIN_UNLOCK_SUBJ, $msg);
+               }
+       }
+
+       // Free memory
+       SQL_FREERESULT($result_stop);
+}
+
+//
+?>