]> git.mxchange.org Git - mailer.git/blobdiff - 0.2.1/inc/modules/admin/what-config_email.php
win32 to unix line delimiters changed
[mailer.git] / 0.2.1 / inc / modules / admin / what-config_email.php
index 0f5c0f65e3ab686bd8cce44774a7e714d0e15bc2..fff6628be26b869080ab33f35bba5f565f16bf3f 100644 (file)
-<?php\r
-/************************************************************************\r
- * MXChange v0.2.1                                    Start: 10/11/2003 *\r
- * ===============                              Last change: 07/04/2004 *\r
- *                                                                      *\r
- * -------------------------------------------------------------------- *\r
- * File              : what-config_emails.php                           *\r
- * -------------------------------------------------------------------- *\r
- * Short description : Edit all things around email and sending         *\r
- * -------------------------------------------------------------------- *\r
- * Kurzbeschreibung  : �ndern aller Email-Einstellungen                 *\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
-if (empty($_POST['max'])) unset($_POST['add_max']);\r
-if (isset($_POST['add_max']))\r
-{\r
-       // Save all settings\r
-       $result = SQL_QUERY_ESC("SELECT id FROM "._MYSQL_PREFIX."_max_receive WHERE value='%s' LIMIT 1",\r
-        array(bigintval($_POST['max'])), __FILE__, __LINE__);\r
-       if (SQL_NUMROWS($result) == 0)\r
-       {\r
-               // Add this value (including comment)\r
-               $result = SQL_QUERY_ESC("INSERT INTO "._MYSQL_PREFIX."_max_receive (value, comment) VALUES ('%s', '%s')",\r
-                array(bigintval($_POST['max']), stripslashes($_POST['comment'])),__FILE__, __LINE__);\r
-               $content = "<SPAN class=\"admin_done\">".MAX_VALUE_SAVED."</SPAN>";\r
-       }\r
-        else\r
-       {\r
-               // Free memory\r
-               SQL_FREERESULT($result);\r
-\r
-               // Value does alread exists!\r
-               $content = "<SPAN class=\"admin_failed\">".MAX_VALUE_ALREADY."</SPAN>";\r
-       }\r
-\r
-       // Display message\r
-       LOAD_TEMPLATE("admin_settings_saved", false, $content);\r
-}\r
- elseif ((isset($_POST['ok'])) && (isset($_GET['do'])))\r
-{\r
-       // Change or delete entries...\r
-       $TEXT = "";\r
-       foreach ($_POST['id'] as $id=>$value)\r
-       {\r
-               // Secure ID\r
-               $id = bigintval($id);\r
-\r
-               switch ($_GET['do'])\r
-               {\r
-               case "edit": // Change entries\r
-                       $result = SQL_QUERY_ESC("UPDATE "._MYSQL_PREFIX."_max_receive SET value='%s', comment='%s' WHERE id=%d LIMIT 1",\r
-                        array(bigintval($_POST['val'][$id]), $_POST['comm'][$id], $id),__FILE__, __LINE__);\r
-                       $TEXT = MRECEIVE_SAVED;\r
-                       break;\r
-\r
-               case "del":\r
-                       $result = SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM "._MYSQL_PREFIX."_max_receive WHERE id=%d LIMIT 1",\r
-                        array($id), __FILE__, __LINE__);\r
-                       $TEXT = MRECEIVE_DELETED;\r
-                       break;\r
-               }\r
-       }\r
-       if (isset($TEXT))\r
-       {\r
-               // Display message\r
-               LOAD_TEMPLATE("admin_settings_saved", false, $TEXT);\r
-       }\r
-}\r
- elseif ((isset($_POST['del'])) && ((SELECTION_COUNT($_POST['sel']) > 0) || (isset($_POST['sel'][0]))))\r
-{\r
-       // Delete entries\r
-       $SW = 2; $OUT = "";\r
-       foreach ($_POST['sel'] as $id=>$value)\r
-       {\r
-               // Load data\r
-               $result = SQL_QUERY_ESC("SELECT value, comment FROM "._MYSQL_PREFIX."_max_receive WHERE id=%d LIMIT 1",\r
-                array(bigintval($id)), __FILE__, __LINE__);\r
-               list($value, $comment) = SQL_FETCHROW($result);\r
-               SQL_FREERESULT($result);\r
-\r
-               // Prepare data for the row template\r
-               $content = array(\r
-                       'sw'      => $SW,\r
-                       'id'      => $id,\r
-                       'value'   => $value,\r
-                       'comment' => $comment,\r
-               );\r
-\r
-               // Load row template and switch color\r
-               $OUT .= LOAD_TEMPLATE("admin_config_email_del_row", true, $content);\r
-               $SW = 3 - $SW;\r
-       }\r
-       define('__ROWS', $OUT);\r
-\r
-       // Load main template\r
-       LOAD_TEMPLATE("admin_config_email_del");\r
-}\r
- elseif ((isset($_POST['edit'])) && ((SELECTION_COUNT($_POST['sel']) > 0) || (isset($_POST['sel'][0]))))\r
-{\r
-       // Edit entries\r
-       $SW = 2; $OUT = "";\r
-       foreach ($_POST['sel'] as $id=>$value)\r
-       {\r
-               // Load data\r
-               $result = SQL_QUERY_ESC("SELECT value, comment FROM "._MYSQL_PREFIX."_max_receive WHERE id=%d LIMIT 1",\r
-                array(bigintval($id)), __FILE__, __LINE__);\r
-               list($value, $comment) = SQL_FETCHROW($result);\r
-               SQL_FREERESULT($result);\r
-\r
-               // Prepare data for the row template\r
-               $content = array(\r
-                       'sw'      => $SW,\r
-                       'id'      => $id,\r
-                       'value'   => $value,\r
-                       'comment' => $comment,\r
-               );\r
-\r
-               // Load row template and switch color\r
-               $OUT .= LOAD_TEMPLATE("admin_config_email_edit_row", true, $content);\r
-               $SW = 3 - $SW;\r
-       }\r
-       define('__ROWS', $OUT);\r
-\r
-       // Load main template\r
-       LOAD_TEMPLATE("admin_config_email_edit");\r
-}\r
- else\r
-{\r
-       $result = SQL_QUERY("SELECT id, value, comment FROM "._MYSQL_PREFIX."_max_receive ORDER BY value", __FILE__, __LINE__);\r
-       if (SQL_NUMROWS($result) > 0)\r
-       {\r
-               // List already existing entries for editing\r
-               $SW = 2; $OUT = "";\r
-               while (list($id, $value, $comment) = SQL_FETCHROW($result))\r
-               {\r
-                       // Prepare data for the row template\r
-                       $content = array(\r
-                               'sw'      => $SW,\r
-                               'id'      => $id,\r
-                               'value'   => $value,\r
-                               'comment' => $comment,\r
-                       );\r
-\r
-                       // Load row template and switch color\r
-                       $OUT .= LOAD_TEMPLATE("admin_config_email_row", true, $content);\r
-                       $SW = 3 - $SW;\r
-               }\r
-\r
-               // Free memory\r
-               SQL_FREERESULT($result);\r
-               define('__ROWS', $OUT);\r
-\r
-               // Load main template\r
-               LOAD_TEMPLATE("admin_config_email");\r
-       }\r
-\r
-       // Display form\r
-       LOAD_TEMPLATE("admin_add_max");\r
-}\r
-CLOSE_TABLE();\r
-//\r
-?>\r
+<?php
+/************************************************************************
+ * MXChange v0.2.1                                    Start: 10/11/2003 *
+ * ===============                              Last change: 07/04/2004 *
+ *                                                                      *
+ * -------------------------------------------------------------------- *
+ * File              : what-config_emails.php                           *
+ * -------------------------------------------------------------------- *
+ * Short description : Edit all things around email and sending         *
+ * -------------------------------------------------------------------- *
+ * Kurzbeschreibung  : �ndern aller Email-Einstellungen                 *
+ * -------------------------------------------------------------------- *
+ *                                                                      *
+ * -------------------------------------------------------------------- *
+ * 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", "");
+if (empty($_POST['max'])) unset($_POST['add_max']);
+if (isset($_POST['add_max']))
+{
+       // Save all settings
+       $result = SQL_QUERY_ESC("SELECT id FROM "._MYSQL_PREFIX."_max_receive WHERE value='%s' LIMIT 1",
+        array(bigintval($_POST['max'])), __FILE__, __LINE__);
+       if (SQL_NUMROWS($result) == 0)
+       {
+               // Add this value (including comment)
+               $result = SQL_QUERY_ESC("INSERT INTO "._MYSQL_PREFIX."_max_receive (value, comment) VALUES ('%s', '%s')",
+                array(bigintval($_POST['max']), stripslashes($_POST['comment'])),__FILE__, __LINE__);
+               $content = "<SPAN class=\"admin_done\">".MAX_VALUE_SAVED."</SPAN>";
+       }
+        else
+       {
+               // Free memory
+               SQL_FREERESULT($result);
+
+               // Value does alread exists!
+               $content = "<SPAN class=\"admin_failed\">".MAX_VALUE_ALREADY."</SPAN>";
+       }
+
+       // Display message
+       LOAD_TEMPLATE("admin_settings_saved", false, $content);
+}
+ elseif ((isset($_POST['ok'])) && (isset($_GET['do'])))
+{
+       // Change or delete entries...
+       $TEXT = "";
+       foreach ($_POST['id'] as $id=>$value)
+       {
+               // Secure ID
+               $id = bigintval($id);
+
+               switch ($_GET['do'])
+               {
+               case "edit": // Change entries
+                       $result = SQL_QUERY_ESC("UPDATE "._MYSQL_PREFIX."_max_receive SET value='%s', comment='%s' WHERE id=%d LIMIT 1",
+                        array(bigintval($_POST['val'][$id]), $_POST['comm'][$id], $id),__FILE__, __LINE__);
+                       $TEXT = MRECEIVE_SAVED;
+                       break;
+
+               case "del":
+                       $result = SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM "._MYSQL_PREFIX."_max_receive WHERE id=%d LIMIT 1",
+                        array($id), __FILE__, __LINE__);
+                       $TEXT = MRECEIVE_DELETED;
+                       break;
+               }
+       }
+       if (isset($TEXT))
+       {
+               // Display message
+               LOAD_TEMPLATE("admin_settings_saved", false, $TEXT);
+       }
+}
+ elseif ((isset($_POST['del'])) && ((SELECTION_COUNT($_POST['sel']) > 0) || (isset($_POST['sel'][0]))))
+{
+       // Delete entries
+       $SW = 2; $OUT = "";
+       foreach ($_POST['sel'] as $id=>$value)
+       {
+               // Load data
+               $result = SQL_QUERY_ESC("SELECT value, comment FROM "._MYSQL_PREFIX."_max_receive WHERE id=%d LIMIT 1",
+                array(bigintval($id)), __FILE__, __LINE__);
+               list($value, $comment) = SQL_FETCHROW($result);
+               SQL_FREERESULT($result);
+
+               // Prepare data for the row template
+               $content = array(
+                       'sw'      => $SW,
+                       'id'      => $id,
+                       'value'   => $value,
+                       'comment' => $comment,
+               );
+
+               // Load row template and switch color
+               $OUT .= LOAD_TEMPLATE("admin_config_email_del_row", true, $content);
+               $SW = 3 - $SW;
+       }
+       define('__ROWS', $OUT);
+
+       // Load main template
+       LOAD_TEMPLATE("admin_config_email_del");
+}
+ elseif ((isset($_POST['edit'])) && ((SELECTION_COUNT($_POST['sel']) > 0) || (isset($_POST['sel'][0]))))
+{
+       // Edit entries
+       $SW = 2; $OUT = "";
+       foreach ($_POST['sel'] as $id=>$value)
+       {
+               // Load data
+               $result = SQL_QUERY_ESC("SELECT value, comment FROM "._MYSQL_PREFIX."_max_receive WHERE id=%d LIMIT 1",
+                array(bigintval($id)), __FILE__, __LINE__);
+               list($value, $comment) = SQL_FETCHROW($result);
+               SQL_FREERESULT($result);
+
+               // Prepare data for the row template
+               $content = array(
+                       'sw'      => $SW,
+                       'id'      => $id,
+                       'value'   => $value,
+                       'comment' => $comment,
+               );
+
+               // Load row template and switch color
+               $OUT .= LOAD_TEMPLATE("admin_config_email_edit_row", true, $content);
+               $SW = 3 - $SW;
+       }
+       define('__ROWS', $OUT);
+
+       // Load main template
+       LOAD_TEMPLATE("admin_config_email_edit");
+}
+ else
+{
+       $result = SQL_QUERY("SELECT id, value, comment FROM "._MYSQL_PREFIX."_max_receive ORDER BY value", __FILE__, __LINE__);
+       if (SQL_NUMROWS($result) > 0)
+       {
+               // List already existing entries for editing
+               $SW = 2; $OUT = "";
+               while (list($id, $value, $comment) = SQL_FETCHROW($result))
+               {
+                       // Prepare data for the row template
+                       $content = array(
+                               'sw'      => $SW,
+                               'id'      => $id,
+                               'value'   => $value,
+                               'comment' => $comment,
+                       );
+
+                       // Load row template and switch color
+                       $OUT .= LOAD_TEMPLATE("admin_config_email_row", true, $content);
+                       $SW = 3 - $SW;
+               }
+
+               // Free memory
+               SQL_FREERESULT($result);
+               define('__ROWS', $OUT);
+
+               // Load main template
+               LOAD_TEMPLATE("admin_config_email");
+       }
+
+       // Display form
+       LOAD_TEMPLATE("admin_add_max");
+}
+CLOSE_TABLE();
+//
+?>