]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/admin/what-config_email.php
Some more wrappers added, code cleanups:
[mailer.git] / inc / modules / admin / what-config_email.php
index 0880023e6d60fc744605908c144f3364075103c5..3242fcc33517ac3f13ee901a4d7ea40c0ebf7c98 100644 (file)
@@ -1,7 +1,7 @@
 <?php
 /************************************************************************
- * MXChange v0.2.1                                    Start: 10/11/2003 *
- * ===============                              Last change: 07/04/2004 *
+ * Mailer v0.2.1-FINAL                                Start: 10/11/2003 *
+ * ===================                          Last change: 07/04/2004 *
  *                                                                      *
  * -------------------------------------------------------------------- *
  * File              : what-config_emails.php                           *
  * -------------------------------------------------------------------- *
  * Kurzbeschreibung  : Aendern aller Email-Einstellungen                *
  * -------------------------------------------------------------------- *
- * $Revision:: 856                                                    $ *
- * $Date:: 2009-03-06 20:24:32 +0100 (Fr, 06. Mär 2009)              $ *
+ * $Revision::                                                        $ *
+ * $Date::                                                            $ *
  * $Tag:: 0.2.1-FINAL                                                 $ *
- * $Author:: stelzi                                                   $ *
+ * $Author::                                                          $ *
  * Needs to be in all Files and every File needs "svn propset           *
  * svn:keywords Date Revision" (autoprobset!) at least!!!!!!            *
  * -------------------------------------------------------------------- *
- * Copyright (c) 2003 - 2008 by Roland Haeder                           *
+ * Copyright (c) 2003 - 2009 by Roland Haeder                           *
+ * Copyright (c) 2009, 2010 by Mailer Developer Team                    *
  * For more information visit: http://www.mxchange.org                  *
  *                                                                      *
  * This program is free software; you can redistribute it and/or modify *
  ************************************************************************/
 
 // Some security stuff...
-if ((!defined('__SECURITY')) || (!IS_ADMIN())) {
-       $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
-       require($INC);
+if ((!defined('__SECURITY')) || (!isAdmin())) {
+       die();
 }
 
 // Add description as navigation point
-ADD_DESCR("admin", __FILE__);
+addMenuDescription('admin', __FILE__);
 
 // Remove empty array index
-if (!REQUEST_ISSET_POST(('max'))) REQUEST_UNSET_POST(('add_max'));
+if (!isPostRequestParameterSet('max')) unsetPostRequestParameter('add_max');
 
-if (REQUEST_ISSET_POST(('add_max'))) {
+if (isPostRequestParameterSet('add_max')) {
        // Save all settings
-       $result = SQL_QUERY_ESC("SELECT id FROM `{!_MYSQL_PREFIX!}_max_receive` WHERE value='%s' LIMIT 1",
-        array(bigintval(REQUEST_POST('max'))), __FILE__, __LINE__);
-       if (SQL_NUMROWS($result) == 0) {
+       $result = SQL_QUERY_ESC("SELECT `id` FROM `{?_MYSQL_PREFIX?}_max_receive` WHERE value='%s' LIMIT 1",
+       array(bigintval(postRequestParameter('max'))), __FILE__, __LINE__);
+       if (SQL_HASZERONUMS($result)) {
                // Add this value (including comment)
-               SQL_QUERY_ESC("INSERT INTO `{!_MYSQL_PREFIX!}_max_receive` (value, comment) VALUES ('%s','%s')",
-                       array(bigintval(REQUEST_POST('max')), REQUEST_POST('comment')),__FILE__, __LINE__);
-               $content = MAX_VALUE_SAVED;
+               SQL_QUERY_ESC("INSERT INTO `{?_MYSQL_PREFIX?}_max_receive` (`value`, `comment`) VALUES ('%s','%s')",
+               array(bigintval(postRequestParameter('max')), postRequestParameter('comment')),__FILE__, __LINE__);
+               $content = '{--ADMIN_MAX_VALUE_SAVED--}';
        } else {
                // Value does alread exists!
-               $content = "<span class=\"admin_failed\">{--MAX_VALUE_ALREADY--}</span>";
+               $content = '<span class="admin_failed">{--ADMIN_MAX_VALUE_ALREADY--}</span>';
        }
 
        // Free memory
        SQL_FREERESULT($result);
 
        // Display message
-       LOAD_TEMPLATE("admin_settings_saved", false, $content);
-} elseif ((IS_FORM_SENT()) && (REQUEST_ISSET_GET(('do')))) {
+       loadTemplate('admin_settings_saved', false, $content);
+} elseif ((isFormSent()) && (isGetRequestParameterSet('do'))) {
        // Change or delete entries...
-       $TEXT = "";
-       foreach (REQUEST_POST('id') as $id => $value) {
-               // Secure ID
+       $TEXT = '';
+       foreach (postRequestParameter('id') as $id => $value) {
+               // Secure id
                $id = bigintval($id);
 
-               switch (REQUEST_GET('do'))
+               switch (getRequestParameter('do'))
                {
-               case "edit": // Change entries
-                       SQL_QUERY_ESC("UPDATE `{!_MYSQL_PREFIX!}_max_receive` SET value='%s', comment='%s' WHERE id=%s LIMIT 1",
+                       case 'edit': // Change entries
+                               SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_max_receive` SET value='%s', comment='%s' WHERE `id`=%s LIMIT 1",
                                array(
-                                       bigintval(REQUEST_POST('val', $id)),
-                                       REQUEST_POST('comm', $id),
+                                       bigintval(postRequestParameter('val', $id)),
+                                       postRequestParameter('comm', $id),
                                        $id
                                ),__FILE__, __LINE__);
-                       $TEXT = MRECEIVE_SAVED;
-                       break;
-
-               case "del":
-                       SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM `{!_MYSQL_PREFIX!}_max_receive` WHERE id=%s LIMIT 1",
-                               array($id), __FILE__, __LINE__);
-                       $TEXT = MRECEIVE_DELETED;
-                       break;
+                               $TEXT = '{--MRECEIVE_SAVED--}';
+                               break;
+
+                       case 'del':
+                               SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_max_receive` WHERE `id`=%s LIMIT 1",
+                                       array($id), __FILE__, __LINE__);
+                               $TEXT = '{--MRECEIVE_DELETED--}';
+                               break;
                }
        }
 
        if (isset($TEXT)) {
                // Display message
-               LOAD_TEMPLATE("admin_settings_saved", false, $TEXT);
-       }
-} elseif ((REQUEST_ISSET_POST('del')) && (SELECTION_COUNT(REQUEST_POST('sel')) > 0)) {
+               loadTemplate('admin_settings_saved', false, $TEXT);
+       } // END - if
+} elseif ((isFormSent('del')) && (ifPostContainsSelections())) {
        // Delete entries
-       $OUT = ""; $SW = 2;
-       foreach (REQUEST_POST('sel') as $id => $value)
-       {
+       $OUT = '';
+       foreach (postRequestParameter('sel') as $id => $value) {
                // Load data
-               $result = SQL_QUERY_ESC("SELECT value, comment FROM `{!_MYSQL_PREFIX!}_max_receive` WHERE id=%s LIMIT 1",
-                array(bigintval($id)), __FILE__, __LINE__);
-               list($value, $comment) = SQL_FETCHROW($result);
+               $result = SQL_QUERY_ESC("SELECT `id`, `value`, `comment` FROM `{?_MYSQL_PREFIX?}_max_receive` WHERE `id`=%s LIMIT 1",
+                       array(bigintval($id)), __FILE__, __LINE__);
+               $content = SQL_FETCHARRAY($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);
+               $OUT .= loadTemplate('admin_config_email_del_row', true, $content);
+       } // END - foreach
+       $content['rows'] = $OUT;
 
        // Load main template
-       LOAD_TEMPLATE("admin_config_email_del");
-} elseif ((REQUEST_ISSET_POST('edit')) && (SELECTION_COUNT(REQUEST_POST('sel')) > 0)) {
+       loadTemplate('admin_config_email_del', false, $content);
+} elseif ((isFormSent('edit')) && (ifPostContainsSelections())) {
        // Edit entries
-       $OUT = ""; $SW = 2;
-       foreach (REQUEST_POST('sel') as $id => $value) {
+       $OUT = '';
+       foreach (postRequestParameter('sel') as $id => $value) {
                // Load data
-               $result = SQL_QUERY_ESC("SELECT value, comment FROM `{!_MYSQL_PREFIX!}_max_receive` WHERE id=%s LIMIT 1",
-                array(bigintval($id)), __FILE__, __LINE__);
-               list($value, $comment) = SQL_FETCHROW($result);
+               $result = SQL_QUERY_ESC("SELECT `id`, `value`, `comment` FROM `{?_MYSQL_PREFIX?}_max_receive` WHERE `id`=%s LIMIT 1",
+                       array(bigintval($id)), __FILE__, __LINE__);
+               $content = SQL_FETCHARRAY($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);
+               $OUT .= loadTemplate('admin_config_email_edit_row', true, $content);
+       } // END - foreach
+       $content['rows'] = $OUT;
 
        // Load main template
-       LOAD_TEMPLATE("admin_config_email_edit");
+       loadTemplate('admin_config_email_edit', false, $content);
 } else {
-       $result = SQL_QUERY("SELECT id, value, comment FROM `{!_MYSQL_PREFIX!}_max_receive` ORDER BY value",
-               __FILE__, __LINE__);
-       if (SQL_NUMROWS($result) > 0) {
+       $result = SQL_QUERY("SELECT `id`, `value`, `comment` FROM `{?_MYSQL_PREFIX?}_max_receive` ORDER BY `value` ASC",
+       __FILE__, __LINE__);
+       if (!SQL_HASZERONUMS($result)) {
                // List already existing entries for editing
-               $OUT = ""; $SW = 2;
+               $OUT = '';
                while ($content = SQL_FETCHARRAY($result)) {
-                       // Prepare data for the row template
-                       $content['sw'] = $SW;
-
                        // Load row template and switch color
-                       $OUT .= LOAD_TEMPLATE("admin_config_email_row", true, $content);
-                       $SW = 3 - $SW;
+                       $OUT .= loadTemplate('admin_config_email_row', true, $content);
                } // END - while
 
                // Free memory
                SQL_FREERESULT($result);
-               define('__ROWS', $OUT);
+               $content['rows'] = $OUT;
 
                // Load main template
-               LOAD_TEMPLATE("admin_config_email");
+               loadTemplate('admin_config_email', false, $content);
        } // END - if
 
        // Display form
-       LOAD_TEMPLATE("admin_add_max");
+       loadTemplate('admin_add_max');
 }
 
-//
+// [EOF]
 ?>