Even more rewrites/fixes from EL branch (please report any broken part after you...
[mailer.git] / inc / modules / admin / what-payments.php
index 9a987d72a4d42414119f4b56fd7e4da2ef4bc627..8de522a367b76e695a5a096bbb7edf2b858bfd7b 100644 (file)
@@ -1,18 +1,24 @@
 <?php
 /************************************************************************
- * MXChange v0.2.1                                    Start: 10/19/2003 *
- * ===============                              Last change: 12/12/2004 *
+ * Mailer v0.2.1-FINAL                                Start: 10/19/2003 *
+ * ===================                          Last change: 12/12/2004 *
  *                                                                      *
  * -------------------------------------------------------------------- *
  * File              : what-payments.php                                *
  * -------------------------------------------------------------------- *
  * Short description : Payments (points) for confirmed mails            *
  * -------------------------------------------------------------------- *
- * Kurzbeschreibung  : Verguetungen fuer bestaetigte Mails              *
+ * Kurzbeschreibung  : Verguetungen fuer best&auml;tigte Mails              *
  * -------------------------------------------------------------------- *
- *                                                                      *
+ * $Revision::                                                        $ *
+ * $Date::                                                            $ *
+ * $Tag:: 0.2.1-FINAL                                                 $ *
+ * $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 ((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__));
+if ((!defined('__SECURITY')) || (!isAdmin())) {
+       die();
+} // END - if
 
-OPEN_TABLE("100%", "admin_content admin_content_align", "");
-global $link;
+// Add description as navigation point
+addMenuDescription('admin', __FILE__);
+
+if (((!isPostRequestParameterSet(('t_wait'))) || (!isPostRequestParameterSet(('payment')))) && (isGetRequestParameterSet('do')) && (getRequestParameter('do') == 'add')) {
+       unsetPostRequestParameter('ok');
+} // END - if
+
+if (isFormSent()) {
+       switch (getRequestParameter('do')) {
+               case 'add':
+                       addSql("INSERT INTO `{?_MYSQL_PREFIX?}_payments` (time, payment, mail_title, price) VALUES ('".postRequestParameter('t_wait')."','".postRequestParameter('payment')."','".postRequestParameter('title')."','".postRequestParameter('price')."')");
+                       $result = SQL_QUERY_ESC("SELECT `id` FROM `{?_MYSQL_PREFIX?}_payments` WHERE time='%s' LIMIT 1",
+                       array(postRequestParameter('t_wait')), __FILE__, __LINE__);
+                       if (SQL_NUMROWS($result) == 1) {
+                               // Re-init the array here
+                               initSqls();
+
+                               // Free memory
+                               SQL_FREERESULT($result);
+                       }
+                       break;
 
-if (empty($_GET['do'])) unset($_GET['do']);
-if (((empty($_POST['t_wait'])) || (empty($_POST['payment']))) && (!empty($_GET['do'])) && ($_GET['do'] == "add"))
-{
-       unset($_POST['ok']);
-}
+               case 'edit':
+                       foreach (postRequestParameter('time') as $id => $value) {
+                               addSql("UPDATE `{?_MYSQL_PREFIX?}_payments` SET `time`='" . $value . "', `payment`='".postRequestParameter('pay', $id)."', price='".postRequestParameter('price', $id)."', mail_title='".postRequestParameter('title', $id)."' WHERE `id`='".$id."' LIMIT 1");
+                       }
+                       break;
 
-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>";
-                                       }
-                               }
+               case 'del':
+                       foreach (postRequestParameter('id') as $id => $value) {
+                               addSql("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_payments` WHERE `id`=" . bigintval($id) . " LIMIT 1");
                        }
-               }
+                       break;
+       } // END - switch
+
+       // Save settings
+       if (countSqls() > 0) {
+               // Run all queries
+               runFilterChain('run_sqls');
+               $content = '<span class="admin_failed">{--SETTINGS_SAVED--}</span>';
+       } else {
+               // Nothing has changed!
+               $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))
-{
+
+       // Output template
+       loadTemplate('admin_settings_saved', false, $content);
+} elseif ((isFormSent('del')) && (countPostSelection() > 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__);
+       $OUT = ''; $SW = 2;
+       foreach (postRequestParameter('sel') as $id => $value) {
+               $result = SQL_QUERY_ESC("SELECT time, mail_title FROM `{?_MYSQL_PREFIX?}_payments` WHERE `id`=%s LIMIT 1",
+               array(bigintval($id)), __FILE__, __LINE__);
                list($time, $title) = SQL_FETCHROW($result);
                SQL_FREERESULT($result);
 
@@ -129,22 +107,18 @@ if (isset($_POST['ok']))
                );
 
                // Load row template and switch colors
-               $OUT .= LOAD_TEMPLATE("admin_del_payments_row", true, $content);
+               $OUT .= loadTemplate('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))
-{
+       loadTemplate('admin_del_payments', false, $OUT);
+} elseif ((isFormSent('edit')) && (countPostSelection() > 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__);
+       $OUT = ''; $SW = 2;
+       foreach (postRequestParameter('sel') as $id => $value) {
+               $result = SQL_QUERY_ESC("SELECT time, payment, mail_title, price FROM `{?_MYSQL_PREFIX?}_payments` WHERE `id`=%s LIMIT 1",
+               array(bigintval($id)), __FILE__, __LINE__);
                list($time, $pay, $title, $price) = SQL_FETCHROW($result);
                SQL_FREERESULT($result);
 
@@ -159,55 +133,47 @@ if (isset($_POST['ok']))
                );
 
                // Load row template and switch colors
-               $OUT .= LOAD_TEMPLATE("admin_edit_payments_row", true, $content);
+               $OUT .= loadTemplate('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 = "";
+       loadTemplate('admin_edit_payments', false, $OUT);
+} else {
+       // Referal levels
+       $result = SQL_QUERY("SELECT `id`, `time`, `payment`, `mail_title`, `price` FROM `{?_MYSQL_PREFIX?}_payments` ORDER BY `time` ASC", __FILE__, __LINE__);
+       if (SQL_NUMROWS($result) > 0) {
+               // Make referal levels editable and deletable
+               $OUT = ''; $SW = 2;
 
                // List already existing categories for editing
-               while (list($id, $time, $pay, $title, $price) = SQL_FETCHROW($result))
-               {
-                       $pay   = TRANSLATE_COMMA($pay);
-                       $price = TRANSLATE_COMMA($price);
-
+               while ($content = SQL_FETCHARRAY($result)) {
                        // Prepare array for the row template
+                       // @TODO Rewritings: title->mail_title, pay->payment in template
                        $content = array(
                                'sw'    => $SW,
-                               'id'    => $id,
-                               'time'  => $time,
-                               'title' => $title,
-                               'pay'   => $pay,
-                               'price' => $price,
+                               'id'    => $content['id'],
+                               'time'  => $content['time'],
+                               'title' => $content['mail_title'],
+                               'pay'   => translateComma($content['payment']),
+                               'price' => translateComma($content['price'])
                        );
 
                        // Load row template and switch colors
-                       $OUT .= LOAD_TEMPLATE("admin_payments_list_row", true, $content);
+                       $OUT .= loadTemplate('admin_payments_list_row', true, $content);
                        $SW = 3 - $SW;
-               }
+               } // END - switch
 
                // Free memory
                SQL_FREERESULT($result);
-               define('__PAYMENT_ROWS', $OUT);
 
                // Load main template
-               LOAD_TEMPLATE("admin_list_payments");
-       }
+               loadTemplate('admin_list_payments', false, $OUT);
+       } // END - if
 
-       // Form for adding new referral levels
-       LOAD_TEMPLATE("admin_add_payment");
+       // Form for adding new referal levels
+       loadTemplate('admin_add_payment');
 }
-CLOSE_TABLE();
-//
+
+// [EOF]
 ?>