Rewrote 'we' word a little, rewrote mail order to use SQL_INSERTID() instead of anoth...
[mailer.git] / inc / modules / admin / what-list_sponsor_pay.php
index 587fc0580522e824dbeaf5c8c048ba0186f93819..cf3fb4821cb612f9ecf0f946b392cd16aca3274d 100644 (file)
@@ -1,7 +1,7 @@
 <?php
 /************************************************************************
- * MXChange v0.2.1                                    Start: 06/10/2005 *
- * ===============                              Last change: 05/18/2008 *
+ * Mailer v0.2.1-FINAL                                Start: 06/10/2005 *
+ * ===================                          Last change: 05/19/2008 *
  *                                                                      *
  * -------------------------------------------------------------------- *
  * File              : what-list_sponsor_pay.php                        *
  * -------------------------------------------------------------------- *
  * Kurzbeschreibung  : Auflisten/Aendern/Loeschen aller Buchungspakete  *
  * -------------------------------------------------------------------- *
- *                                                                      *
+ * $Revision::                                                        $ *
+ * $Date::                                                            $ *
+ * $Tag:: 0.2.1-FINAL                                                 $ *
+ * $Author::                                                          $ *
  * -------------------------------------------------------------------- *
- * Copyright (c) 2003 - 2008 by Roland Haeder                           *
- * For more information visit: http://www.mxchange.org                  *
+ * Copyright (c) 2003 - 2009 by Roland Haeder                           *
+ * Copyright (c) 2009 - 2012 by Mailer Developer Team                   *
+ * For more information visit: http://mxchange.org                      *
  *                                                                      *
- * This program is free software. You can redistribute it and/or modify *
+ * 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.       *
+ * 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       *
  ************************************************************************/
 
 // 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);
-}
+if ((!defined('__SECURITY')) || (!isAdmin())) {
+       die();
+} // END - if
 
 // Add description as navigation point
-ADD_DESCR("admin", basename(__FILE__));
-$MSG = "";
+addYouAreHereLink('admin', __FILE__);
 
-if (isset($HTTP_POST_VARS['add']))
-{
+$message = '';
+
+if (isFormSent('add')) {
        // Check input variables
-       if (empty($HTTP_POST_VARS['pay_name'])) unset($HTTP_POST_VARS['add']);
-       if ((round($HTTP_POST_VARS['pay_rate']) == 0) || (empty($HTTP_POST_VARS['pay_rate']))) unset($HTTP_POST_VARS['add']);
-       $HTTP_POST_VARS['pay_min_count'] = bigintval($HTTP_POST_VARS['pay_min_count']);
-       if (($HTTP_POST_VARS['pay_min_count'] == 0) || (empty($HTTP_POST_VARS['pay_min_count']))) unset($HTTP_POST_VARS['add']);
-       if (empty($HTTP_POST_VARS['pay_currency'])) unset($HTTP_POST_VARS['add']);
-}
- elseif ((isset($HTTP_POST_VARS['edit'])) || (isset($HTTP_POST_VARS['del'])) || (isset($HTTP_POST_VARS['change'])) || (isset($HTTP_POST_VARS['remove'])))
-{
+       if (!isPostRequestElementSet('pay_name')) unsetPostRequestElement('add');
+       if ((round(postRequestElement('pay_rate')) == 0) || (!isPostRequestElementSet('pay_rate'))) unsetPostRequestElement('add');
+
+       setPostRequestElement('pay_min_count', bigintval(postRequestElement('pay_min_count')));
+
+       if ((postRequestElement('pay_min_count') == '0') || (!isPostRequestElementSet('pay_min_count'))) unsetPostRequestElement('add');
+       if (!isPostRequestElementSet('pay_currency')) unsetPostRequestElement('add');
+
+} elseif ((isFormSent('edit')) || (isFormSent('delete')) || (isFormSent('do_edit')) || (isFormSent('do_delete'))) {
        // Check if at least one entry was selected
-       if (empty($HTTP_POST_VARS['id']))
-       {
+       if (!isPostRequestElementSet('id')) {
                // Nothing selected for editing / deleting???
-               unset($HTTP_POST_VARS['edit']);
-               unset($HTTP_POST_VARS['del']);
-               unset($HTTP_POST_VARS['change']);
-               unset($HTTP_POST_VARS['remove']);
-       }
-        elseif (isset($HTTP_POST_VARS['change']))
-       {
+               unsetPostRequestElement('edit');
+               unsetPostRequestElement('delete');
+               unsetPostRequestElement('do_edit');
+               unsetPostRequestElement('do_delete');
+       } elseif (isFormSent('do_edit')) {
                // Change entries here...
-               foreach ($HTTP_POST_VARS['id'] as $id=>$sel)
-               {
-                       // Secure ID
+               foreach (postRequestElement('id') as $id => $sel) {
+                       // Secure id
                        $id = bigintval($id);
 
                        // Save entry
-                       $result = SQL_QUERY_ESC("UPDATE "._MYSQL_PREFIX."_sponsor_paytypes
-SET pay_name='%s', pay_rate='%s', pay_min_count='%s', pay_currency='%s' WHERE id='%s' LIMIT 1",
- array($HTTP_POST_VARS['name'][$id], $HTTP_POST_VARS['rate'][$id], bigintval($HTTP_POST_VARS['min'][$id]), $HTTP_POST_VARS['curr'][$id], $id),
- __FILE__, __LINE__);
+                       SQL_QUERY_ESC("UPDATE
+       `{?_MYSQL_PREFIX?}_sponsor_paytypes`
+SET
+       `pay_name`='%s',
+       `pay_rate`='%s',
+       `pay_min_count`='%s',
+       `pay_currency`='%s'
+WHERE
+       `id`=%s
+LIMIT 1",
+                       array(
+                               postRequestElement('name', $id),
+                               postRequestElement('rate', $id),
+                               bigintval(postRequestElement('min', $id)),
+                               postRequestElement('curr', $id),
+                               $id
+                       ), __FILE__, __LINE__);
                }
 
                // Generate message
-               $MSG = SPONSOR_PAY_ENTRIES_CHANGED;
-       }
-        elseif (isset($HTTP_POST_VARS['remove']))
-       {
+               $message = '{--SPONSOR_PAY_ENTRIES_CHANGED--}';
+       } elseif (isFormSent('do_delete')) {
                // Remove entries here...
-               foreach ($HTTP_POST_VARS['id'] as $id=>$sel)
-               {
+               foreach (postRequestElement('id') as $id => $sel) {
                        // Remove entry
-                       $result = SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM "._MYSQL_PREFIX."_sponsor_paytypes WHERE id='%s' LIMIT 1",
- array(bigintval($id)), __FILE__, __LINE__);
+                       SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_sponsor_paytypes` WHERE `id`=%s LIMIT 1",
                              array(bigintval($id)), __FILE__, __LINE__);
                }
 
                // Generate message
-               $MSG = SPONSOR_PAY_ENTRIES_REMOVED;
+               $message = '{--SPONSOR_PAY_ENTRIES_REMOVED--}';
        }
 
-       if (!empty($MSG))
-       {
+       if (!empty($message)) {
                // Output message
-               LOAD_TEMPLATE("admin_settings_saved", false, $MSG);
-               OUTPUT_HTML("<BR>");
-       }
+               displayMessage($message);
+       } // END - if
 }
 
-if (isset($HTTP_POST_VARS['add']))
-{
+if (isFormSent('add')) {
        // Check if entry with same name does exists
-       $result = SQL_QUERY_ESC("SELECT id FROM "._MYSQL_PREFIX."_sponsor_paytypes WHERE pay_name='%s' LIMIT 1",
-        array($HTTP_POST_VARS['pay_name']), __FILE__, __LINE__);
-       if (SQL_NUMROWS($result) == 0)
-       {
+       $result = SQL_QUERY_ESC("SELECT `id` FROM `{?_MYSQL_PREFIX?}_sponsor_paytypes` WHERE `pay_name`='%s' LIMIT 1",
+               array(postRequestElement('pay_name')), __FILE__, __LINE__);
+       if (SQL_HASZERONUMS($result)) {
                // No entry found so add this line
-               $result = SQL_QUERY_ESC("INSERT INTO "._MYSQL_PREFIX."_sponsor_paytypes (pay_name, pay_rate, pay_min_count, pay_currency)
- VALUES ('%s', '%s', '%s', '%s')",
- array(htmlspecialchars($HTTP_POST_VARS['pay_name']), str_replace(",", ".", $HTTP_POST_VARS['pay_rate']), bigintval($HTTP_POST_VARS['pay_min_count']), htmlspecialchars($HTTP_POST_VARS['pay_currency'])),
- __FILE__, __LINE__);
+               SQL_QUERY_ESC("INSERT INTO `{?_MYSQL_PREFIX?}_sponsor_paytypes` (`pay_name`,`pay_rate`,`pay_min_count`,`pay_currency`) VALUES ('%s','%s','%s','%s')",
+                       array(
+                               postRequestElement('pay_name'),
+                               convertCommaToDot(postRequestElement('pay_rate')),
+                               bigintval(postRequestElement('pay_min_count')),
+                               postRequestElement('pay_currency')
+                       ), __FILE__, __LINE__);
 
                // Payment type added!
-               $MSG = SPONSOR_ADMIN_PAYTYPE_ADDED_1.$HTTP_POST_VARS['pay_name'].SPONSOR_ADMIN_PAYTYPE_ADDED_2;
-       }
-        else
-       {
-               // Free memory
-               SQL_FREERESULT($result);
-
+               $message = '{%message,ADMIN_SPONSOR_PAYTYPE_ADDED=' . postRequestElement('pay_name') . '%}';
+       } else {
                // Entry does already exists
-               $MSG = SPONSOR_ADMIN_PAYTYPE_ALREADY_1.$HTTP_POST_VARS['pay_name'].SPONSOR_ADMIN_PAYTYPE_ALREADY_2;
+               $message = '{%message,ADMIN_SPONSOR_PAYTYPE_ALREADY=' . postRequestElement('pay_name') . '%}';
        }
 
+       // Free memory
+       SQL_FREERESULT($result);
+
        // Output message
-       LOAD_TEMPLATE("admin_settings_saved", false, $MSG);
-       OUTPUT_HTML("<BR>");
-}
- elseif ((isset($HTTP_POST_VARS['edit'])) || (isset($HTTP_POST_VARS['del'])))
-{
+       displayMessage($message);
+} elseif ((isFormSent('edit')) || (isFormSent('delete'))) {
        // Load all data
-       $OUT = ""; $SW = 2;
-       foreach ($HTTP_POST_VARS['id'] as $id=>$sel)
-       {
+       $OUT = '';
+       foreach (postRequestElement('id') as $id => $sel) {
                // Load entry
-               $result = SQL_QUERY_ESC("SELECT pay_name, pay_rate, pay_min_count, pay_currency FROM "._MYSQL_PREFIX."_sponsor_paytypes WHERE id='%s' LIMIT 1",
-                array(bigintval($id)), __FILE__, __LINE__);
-               if (SQL_NUMROWS($result) == 1)
-               {
+               $result = SQL_QUERY_ESC("SELECT `id`,`pay_name`,`pay_rate`,`pay_min_count`,`pay_currency` FROM `{?_MYSQL_PREFIX?}_sponsor_paytypes` WHERE `id`=%s LIMIT 1",
+                       array(bigintval($id)), __FILE__, __LINE__);
+               if (SQL_NUMROWS($result) == 1) {
                        // Load data
-                       list($name, $rate, $min, $curr) = SQL_FETCHROW($result);
-                       SQL_FREERESULT($result);
-
-                       // Transfer data to array
-                       $content = array(
-                               'id'   => bigintval($id),
-                               'sw'   => bigintval($SW),
-                               'name' => htmlspecialchars($name),
-                               'rate' => TRANSLATE_COMMA($rate),
-                               'min'  => bigintval($min),
-                               'curr' => htmlspecialchars($curr)
-                       );
-
-                       if (isset($HTTP_POST_VARS['edit']))
-                       {
+                       $content = SQL_FETCHARRAY($result);
+
+                       if (isFormSent('edit')) {
                                // Edit entry
-                               $OUT .= LOAD_TEMPLATE("admin_list_sponsor_pay_edit_row", true, $content);
-                       }
-                        else
-                       {
+                               $OUT .= loadTemplate('admin_list_sponsor_pay_edit_row', true, $content);
+                       } else {
                                // Delete entry
-                               $OUT .= LOAD_TEMPLATE("admin_list_sponsor_pay_del_row", true, $content);
+                               $OUT .= loadTemplate('admin_list_sponsor_pay_del_row', true, $content);
                        }
-               }
-                else
-               {
+               } else {
                        // Entry invalid
-                       $OUT .= LOAD_TEMPLATE("admin_list_sponsor_pay_404", true, $id);
+                       $OUT .= loadTemplate('admin_list_sponsor_pay_404', true, $id);
                }
 
-               // Switch colors
-               $SW = 3 - $SW;
-       }
-
-       // Remember content in constant
-       define('__SPONSOR_ROWS', $OUT);
+               // Free result
+               SQL_FREERESULT($result);
+       } // END - foreach
 
        // Load main template depending on mode (edit/delete)
-       if (isset($HTTP_POST_VARS['edit']))
-       {
+       if (isFormSent('edit')) {
                // Load main edit template
-               LOAD_TEMPLATE("admin_list_sponsor_pay_edit");
-       }
-        else
-       {
+               loadTemplate('admin_list_sponsor_pay_edit', false, $OUT);
+       } else {
                // Load main delete template
-               LOAD_TEMPLATE("admin_list_sponsor_pay_del");
+               loadTemplate('admin_list_sponsor_pay_del', false, $OUT);
        }
-}
- else
-{
+} else {
        // Load all payment types
-       $result = SQL_QUERY("SELECT id, pay_name, pay_rate, pay_min_count, pay_currency FROM "._MYSQL_PREFIX."_sponsor_paytypes ORDER BY pay_name",
-        __FILE__, __LINE__);
-
-       // Do we have some paytypes setup?
-       if (SQL_NUMROWS($result) > 0)
-       {
+       $result = SQL_QUERY("SELECT
+       `id`,
+       `pay_name`,
+       `pay_rate`,
+       `pay_min_count`,
+       `pay_currency`
+FROM
+       `{?_MYSQL_PREFIX?}_sponsor_paytypes`
+ORDER BY
+       `pay_name` ASC",
+               __FILE__, __LINE__);
+
+       // Are there some payment types setup?
+       if (!SQL_HASZERONUMS($result)) {
                // Prepare variables for listing
-               $SW = 2; $OUT = "";
+               $OUT = '';
 
                // List alle found payment types
-               while(list($id, $name, $rate, $min, $currency) = SQL_FETCHROW($result))
-               {
-                       // Remember data in array
-                       $content = array(
-                               'sw'       => $SW,
-                               'id'       => $id,
-                               'name'     => $name,
-                               'rate'     => TRANSLATE_COMMA($rate),
-                               'min'      => $min,
-                               'currency' => $currency
-                       );
-
+               while ($content = SQL_FETCHARRAY($result)) {
                        // Add row
-                       $OUT .= LOAD_TEMPLATE("admin_list_sponsor_pay_row", true, $content);
-
-                       // Switch colors
-                       $SW = 3 - $SW;
-               }
-
-               // Free memory
-               SQL_FREERESULT($result);
-
-               // Remember rows in constant for the template
-               define('__LIST_ROWS', $OUT);
+                       $OUT .= loadTemplate('admin_list_sponsor_pay_row', true, $content);
+               } // END - while
 
                // Load list template
-               define('__LIST_CONTENT', LOAD_TEMPLATE("admin_list_sponsor_pay", true));
-       }
-        else
-       {
+               $content['list_out'] = loadTemplate('admin_list_sponsor_pay', true, $OUT);
+       } else {
                // Noting setup so far!
-               define('__LIST_CONTENT', LOAD_TEMPLATE("admin_settings_saved", true, SPONSOR_ADMIN_NO_PAYTYPES));
+               $content['list_out'] = displayMessage('{--ADMIN_SPONSOR_NO_PAYTYPES--}', true);
        }
 
+       // Free memory
+       SQL_FREERESULT($result);
+
        // Add new payment types here
-       define('__ADD_CONTENT', LOAD_TEMPLATE("admin_add_sponsor_paytype", true));
+       $content['add_out'] = loadTemplate('admin_add_sponsor_paytype', true);
 
        // Load final template
-       LOAD_TEMPLATE("admin_sponsor_paytypes");
+       loadTemplate('admin_sponsor_paytypes', false, $content);
 }
 
-//
+// [EOF]
 ?>