win32 to unix line delimiters changed
[mailer.git] / 0.2.1 / inc / modules / admin / what-payments.php
index 20550cb1fb799cf68aded001adae11a577fa7c85..e72cc1e6029e5116d0619c00f7ba733d34c6f29e 100644 (file)
-<?php\r
-/************************************************************************\r
- * MXChange v0.2.1                                    Start: 10/19/2003 *\r
- * ===============                              Last change: 12/12/2004 *\r
- *                                                                      *\r
- * -------------------------------------------------------------------- *\r
- * File              : what-payments.php                                *\r
- * -------------------------------------------------------------------- *\r
- * Short description : Payments (points) for confirmed mails            *\r
- * -------------------------------------------------------------------- *\r
- * Kurzbeschreibung  : Verg�tungen f�r best�tigte Mails                 *\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'])) || (!IS_ADMIN()))\r
-{\r
-       $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";\r
-       require($INC);\r
-}\r
-// Add description as navigation point\r
-ADD_DESCR("admin", basename(__FILE__));\r
-\r
-OPEN_TABLE("100%", "admin_content admin_content_align", "");\r
-global $link;\r
-\r
-if (empty($_GET['do'])) unset($_GET['do']);\r
-if (((empty($_POST['t_wait'])) || (empty($_POST['payment']))) && (!empty($_GET['do'])) && ($_GET['do'] == "add"))\r
-{\r
-       unset($_POST['ok']);\r
-}\r
-\r
-if (isset($_POST['ok']))\r
-{\r
-       $SQL = array();\r
-       switch ($_GET['do'])\r
-       {\r
-       case "add":\r
-               $SQL[] = "INSERT INTO "._MYSQL_PREFIX."_payments (time, payment, mail_title, price) VALUES ('".$_POST['t_wait']."', '".$_POST['payment']."', '".$_POST['title']."', '".$_POST['price']."')";\r
-               $result = SQL_QUERY_ESC("SELECT id FROM "._MYSQL_PREFIX."_payments WHERE time='%s' LIMIT 1",\r
-                array($_POST['t_wait']), __FILE__, __LINE__);\r
-               if (SQL_NUMROWS($result) == 1)\r
-               {\r
-                       // Free memory\r
-                       $SQL[0] = "";\r
-                       SQL_FREERESULT($result);\r
-               }\r
-               break;\r
-\r
-       case "edit":\r
-               foreach ($_POST['time'] as $id=>$value)\r
-               {\r
-                       $SQL[] = "UPDATE "._MYSQL_PREFIX."_payments SET time='".$value."', payment='".$_POST['pay'][$id]."', price='".$_POST['price'][$id]."', mail_title='".$_POST['title'][$id]."' WHERE id='".$id."' LIMIT 1";\r
-               }\r
-               break;\r
-\r
-       case "del":\r
-               foreach ($_POST['id'] as $id=>$value)\r
-               {\r
-                       $SQL[] = "DELETE LOW_PRIORITY FROM "._MYSQL_PREFIX."_payments WHERE id='".$id."' LIMIT 1";\r
-               }\r
-               break;\r
-       }\r
-       // Daten abspeichern\r
-       if ((count($SQL) > 0) || (!empty($SQL[0])))\r
-       {\r
-               foreach ($SQL as $s)\r
-               {\r
-                       if (!empty($s))\r
-                       {\r
-                               // Only run non-empty strings\r
-                               $result = SQL_QUERY(trim($s), __FILE__, __LINE__);\r
-                               if (empty($content))\r
-                               {\r
-                                       if (SQL_AFFECTEDROWS($link, __FILE__, __LINE__) == 1)\r
-                                       {\r
-                                               $content = "<SPAN class=\"admin_done\">".SETTINGS_SAVED."</SPAN>";\r
-                                       }\r
-                                        else\r
-                                       {\r
-                                               $content = "<SPAN class=\"admin_failed\">".SETTINGS_NOT_SAVED."</SPAN>";\r
-                                       }\r
-                               }\r
-                       }\r
-               }\r
-       }\r
-        else\r
-       {\r
-               $content = "<SPAN class=\"admin_failed\">".SETTINGS_NOT_SAVED."</SPAN>";\r
-       }\r
-       LOAD_TEMPLATE("admin_settings_saved", false, $content);\r
-}\r
- elseif ((isset($_POST['del'])) && (SELECTION_COUNT($_POST['sel']) > 0))\r
-{\r
-       // Delete entries here\r
-       $SW = 2; $OUT = "";\r
-       foreach ($_POST['sel'] as $id=>$value)\r
-       {\r
-               $result = SQL_QUERY_ESC("SELECT time, mail_title FROM "._MYSQL_PREFIX."_payments WHERE id=%d LIMIT 1",\r
-                array(bigintval($id)), __FILE__, __LINE__);\r
-               list($time, $title) = SQL_FETCHROW($result);\r
-               SQL_FREERESULT($result);\r
-\r
-               // Prepare array for the row template\r
-               $content = array(\r
-                       'sw'    => $SW,\r
-                       'id'    => $id,\r
-                       'time'  => $time,\r
-                       'title' => $title,\r
-               );\r
-\r
-               // Load row template and switch colors\r
-               $OUT .= LOAD_TEMPLATE("admin_del_payments_row", true, $content);\r
-               $SW = 3 - $SW;\r
-       }\r
-       define('__PAYMENT_ROWS', $OUT);\r
-\r
-       // Load main template\r
-       LOAD_TEMPLATE("admin_del_payments");\r
-}\r
- elseif ((isset($_POST['edit'])) && (SELECTION_COUNT($_POST['sel']) > 0))\r
-{\r
-       // Edit entries\r
-       $SW = 2; $OUT = "";\r
-       foreach ($_POST['sel'] as $id=>$value)\r
-       {\r
-               $result = SQL_QUERY_ESC("SELECT time, payment, mail_title, price FROM "._MYSQL_PREFIX."_payments WHERE id=%d LIMIT 1",\r
-                array(bigintval($id)), __FILE__, __LINE__);\r
-               list($time, $pay, $title, $price) = SQL_FETCHROW($result);\r
-               SQL_FREERESULT($result);\r
-\r
-               // Prepare array for the row template\r
-               $content = array(\r
-                       'sw'    => $SW,\r
-                       'id'    => $id,\r
-                       'time'  => $time,\r
-                       'title' => $title,\r
-                       'pay'   => $pay,\r
-                       'price' => $price,\r
-               );\r
-\r
-               // Load row template and switch colors\r
-               $OUT .= LOAD_TEMPLATE("admin_edit_payments_row", true, $content);\r
-               $SW = 3 - $SW;\r
-       }\r
-       define('__PAYMENT_ROWS', $OUT);\r
-\r
-       // Load main template\r
-       LOAD_TEMPLATE("admin_edit_payments");\r
-}\r
- else\r
-{\r
-       // Referral levels\r
-       $result = SQL_QUERY("SELECT id, time, payment, mail_title, price FROM "._MYSQL_PREFIX."_payments ORDER BY time", __FILE__, __LINE__);\r
-       if (SQL_NUMROWS($result) > 0)\r
-       {\r
-               // Make referral levels editable and deletable\r
-               $SW = 2; $OUT = "";\r
-\r
-               // List already existing categories for editing\r
-               while (list($id, $time, $pay, $title, $price) = SQL_FETCHROW($result))\r
-               {\r
-                       $pay   = TRANSLATE_COMMA($pay);\r
-                       $price = TRANSLATE_COMMA($price);\r
-\r
-                       // Prepare array for the row template\r
-                       $content = array(\r
-                               'sw'    => $SW,\r
-                               'id'    => $id,\r
-                               'time'  => $time,\r
-                               'title' => $title,\r
-                               'pay'   => $pay,\r
-                               'price' => $price,\r
-                       );\r
-\r
-                       // Load row template and switch colors\r
-                       $OUT .= LOAD_TEMPLATE("admin_payments_list_row", true, $content);\r
-                       $SW = 3 - $SW;\r
-               }\r
-\r
-               // Free memory\r
-               SQL_FREERESULT($result);\r
-               define('__PAYMENT_ROWS', $OUT);\r
-\r
-               // Load main template\r
-               LOAD_TEMPLATE("admin_list_payments");\r
-       }\r
-\r
-       // Form for adding new referral levels\r
-       LOAD_TEMPLATE("admin_add_payment");\r
-}\r
-CLOSE_TABLE();\r
-//\r
-?>\r
+<?php
+/************************************************************************
+ * MXChange v0.2.1                                    Start: 10/19/2003 *
+ * ===============                              Last change: 12/12/2004 *
+ *                                                                      *
+ * -------------------------------------------------------------------- *
+ * File              : what-payments.php                                *
+ * -------------------------------------------------------------------- *
+ * Short description : Payments (points) for confirmed mails            *
+ * -------------------------------------------------------------------- *
+ * Kurzbeschreibung  : Verg�tungen f�r best�tigte Mails                 *
+ * -------------------------------------------------------------------- *
+ *                                                                      *
+ * -------------------------------------------------------------------- *
+ * 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'])) || (!IS_ADMIN()))
+{
+       $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
+       require($INC);
+}
+// Add description as navigation point
+ADD_DESCR("admin", basename(__FILE__));
+
+OPEN_TABLE("100%", "admin_content admin_content_align", "");
+global $link;
+
+if (empty($_GET['do'])) unset($_GET['do']);
+if (((empty($_POST['t_wait'])) || (empty($_POST['payment']))) && (!empty($_GET['do'])) && ($_GET['do'] == "add"))
+{
+       unset($_POST['ok']);
+}
+
+if (isset($_POST['ok']))
+{
+       $SQL = array();
+       switch ($_GET['do'])
+       {
+       case "add":
+               $SQL[] = "INSERT INTO "._MYSQL_PREFIX."_payments (time, payment, mail_title, price) VALUES ('".$_POST['t_wait']."', '".$_POST['payment']."', '".$_POST['title']."', '".$_POST['price']."')";
+               $result = SQL_QUERY_ESC("SELECT id FROM "._MYSQL_PREFIX."_payments WHERE time='%s' LIMIT 1",
+                array($_POST['t_wait']), __FILE__, __LINE__);
+               if (SQL_NUMROWS($result) == 1)
+               {
+                       // Free memory
+                       $SQL[0] = "";
+                       SQL_FREERESULT($result);
+               }
+               break;
+
+       case "edit":
+               foreach ($_POST['time'] as $id=>$value)
+               {
+                       $SQL[] = "UPDATE "._MYSQL_PREFIX."_payments SET time='".$value."', payment='".$_POST['pay'][$id]."', price='".$_POST['price'][$id]."', mail_title='".$_POST['title'][$id]."' WHERE id='".$id."' LIMIT 1";
+               }
+               break;
+
+       case "del":
+               foreach ($_POST['id'] as $id=>$value)
+               {
+                       $SQL[] = "DELETE LOW_PRIORITY FROM "._MYSQL_PREFIX."_payments WHERE id='".$id."' LIMIT 1";
+               }
+               break;
+       }
+       // Daten abspeichern
+       if ((count($SQL) > 0) || (!empty($SQL[0])))
+       {
+               foreach ($SQL as $s)
+               {
+                       if (!empty($s))
+                       {
+                               // Only run non-empty strings
+                               $result = SQL_QUERY(trim($s), __FILE__, __LINE__);
+                               if (empty($content))
+                               {
+                                       if (SQL_AFFECTEDROWS($link, __FILE__, __LINE__) == 1)
+                                       {
+                                               $content = "<SPAN class=\"admin_done\">".SETTINGS_SAVED."</SPAN>";
+                                       }
+                                        else
+                                       {
+                                               $content = "<SPAN class=\"admin_failed\">".SETTINGS_NOT_SAVED."</SPAN>";
+                                       }
+                               }
+                       }
+               }
+       }
+        else
+       {
+               $content = "<SPAN class=\"admin_failed\">".SETTINGS_NOT_SAVED."</SPAN>";
+       }
+       LOAD_TEMPLATE("admin_settings_saved", false, $content);
+}
+ elseif ((isset($_POST['del'])) && (SELECTION_COUNT($_POST['sel']) > 0))
+{
+       // Delete entries here
+       $SW = 2; $OUT = "";
+       foreach ($_POST['sel'] as $id=>$value)
+       {
+               $result = SQL_QUERY_ESC("SELECT time, mail_title FROM "._MYSQL_PREFIX."_payments WHERE id=%d LIMIT 1",
+                array(bigintval($id)), __FILE__, __LINE__);
+               list($time, $title) = SQL_FETCHROW($result);
+               SQL_FREERESULT($result);
+
+               // Prepare array for the row template
+               $content = array(
+                       'sw'    => $SW,
+                       'id'    => $id,
+                       'time'  => $time,
+                       'title' => $title,
+               );
+
+               // Load row template and switch colors
+               $OUT .= LOAD_TEMPLATE("admin_del_payments_row", true, $content);
+               $SW = 3 - $SW;
+       }
+       define('__PAYMENT_ROWS', $OUT);
+
+       // Load main template
+       LOAD_TEMPLATE("admin_del_payments");
+}
+ elseif ((isset($_POST['edit'])) && (SELECTION_COUNT($_POST['sel']) > 0))
+{
+       // Edit entries
+       $SW = 2; $OUT = "";
+       foreach ($_POST['sel'] as $id=>$value)
+       {
+               $result = SQL_QUERY_ESC("SELECT time, payment, mail_title, price FROM "._MYSQL_PREFIX."_payments WHERE id=%d LIMIT 1",
+                array(bigintval($id)), __FILE__, __LINE__);
+               list($time, $pay, $title, $price) = SQL_FETCHROW($result);
+               SQL_FREERESULT($result);
+
+               // Prepare array for the row template
+               $content = array(
+                       'sw'    => $SW,
+                       'id'    => $id,
+                       'time'  => $time,
+                       'title' => $title,
+                       'pay'   => $pay,
+                       'price' => $price,
+               );
+
+               // Load row template and switch colors
+               $OUT .= LOAD_TEMPLATE("admin_edit_payments_row", true, $content);
+               $SW = 3 - $SW;
+       }
+       define('__PAYMENT_ROWS', $OUT);
+
+       // Load main template
+       LOAD_TEMPLATE("admin_edit_payments");
+}
+ else
+{
+       // Referral levels
+       $result = SQL_QUERY("SELECT id, time, payment, mail_title, price FROM "._MYSQL_PREFIX."_payments ORDER BY time", __FILE__, __LINE__);
+       if (SQL_NUMROWS($result) > 0)
+       {
+               // Make referral levels editable and deletable
+               $SW = 2; $OUT = "";
+
+               // List already existing categories for editing
+               while (list($id, $time, $pay, $title, $price) = SQL_FETCHROW($result))
+               {
+                       $pay   = TRANSLATE_COMMA($pay);
+                       $price = TRANSLATE_COMMA($price);
+
+                       // Prepare array for the row template
+                       $content = array(
+                               'sw'    => $SW,
+                               'id'    => $id,
+                               'time'  => $time,
+                               'title' => $title,
+                               'pay'   => $pay,
+                               'price' => $price,
+                       );
+
+                       // Load row template and switch colors
+                       $OUT .= LOAD_TEMPLATE("admin_payments_list_row", true, $content);
+                       $SW = 3 - $SW;
+               }
+
+               // Free memory
+               SQL_FREERESULT($result);
+               define('__PAYMENT_ROWS', $OUT);
+
+               // Load main template
+               LOAD_TEMPLATE("admin_list_payments");
+       }
+
+       // Form for adding new referral levels
+       LOAD_TEMPLATE("admin_add_payment");
+}
+CLOSE_TABLE();
+//
+?>