branched
[mailer.git] / 0.2.1 / inc / modules / admin / what-payments.php
diff --git a/0.2.1/inc/modules/admin/what-payments.php b/0.2.1/inc/modules/admin/what-payments.php
deleted file mode 100644 (file)
index 9a987d7..0000000
+++ /dev/null
@@ -1,213 +0,0 @@
-<?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  : Verguetungen fuer bestaetigte 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();
-//
-?>