win32 to unix line delimiters changed
[mailer.git] / 0.2.1 / inc / modules / admin / what-del_transfer.php
index 0d1dc80afce2c92a9445fdedc8dc9684c1c43416..27ace76a17cb7358e9ba9132f45761b1487e6be1 100644 (file)
-<?php\r
-/************************************************************************\r
- * MXChange v0.2.1                                    Start: 10/07/2004 *\r
- * ================                             Last change: 11/25/2004 *\r
- *                                                                      *\r
- * -------------------------------------------------------------------- *\r
- * File              : what-del_transfer.php                            *\r
- * -------------------------------------------------------------------- *\r
- * Short description : Point transfers                                  *\r
- * -------------------------------------------------------------------- *\r
- * Kurzbeschreibung  : Punktetransfers                                  *\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
-\r
-// Add description as navigation point\r
-ADD_DESCR("admin", basename(__FILE__));\r
-\r
-if (isset($_POST['del']))\r
-{\r
-       // Delete entries from tables\r
-       $SEL = SELECTION_COUNT($_POST['sel']);\r
-       if ($SEL > 0)\r
-       {\r
-               // Delete entries...\r
-               foreach ($_POST['sel'] as $id=>$sel)\r
-               {\r
-                       $result = SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM "._MYSQL_PREFIX."_user_transfers_in WHERE trans_id=%d LIMIT 1",\r
-                        array(bigintval($id)), __FILE__, __LINE__);\r
-                       $result = SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM "._MYSQL_PREFIX."_user_transfers_out WHERE trans_id=%d LIMIT 1",\r
-                        array(bigintval($id)), __FILE__, __LINE__);\r
-               }\r
-       }\r
-}\r
-\r
-// We only need outgoing transfers\r
-$result = SQL_QUERY("SELECT userid, to_uid, trans_id, points, reason, time_trans FROM "._MYSQL_PREFIX."_user_transfers_out ORDER BY trans_id", __FILE__, __LINE__);\r
-$total = "0";\r
-if (SQL_NUMROWS($result) > 0)\r
-{\r
-       // Output rows\r
-       $OUT = ""; $SW = 2;\r
-       while(list($uid1, $uid2, $idx, $points, $reason, $stamp) = SQL_FETCHROW($result))\r
-       {\r
-               // Prepare data for the row template\r
-               $content = array(\r
-                       'sw'       => $SW,\r
-                       'idx'      => $idx,\r
-                       'stamp'    => MAKE_DATETIME($stamp, "3"),\r
-                       'uid_from' => ADMIN_USER_PROFILE_LINK($uid1),\r
-                       'uid_to'   => ADMIN_USER_PROFILE_LINK($uid1),\r
-                       'reason'   => $reason,\r
-                       'points'   => TRANSLATE_COMMA($points),\r
-               );\r
-\r
-               // Load row template\r
-               $OUT .= LOAD_TEMPLATE("admin_del_transfer_row", true, $content);\r
-\r
-               // Sum points and switch colors\r
-               $total += $points; $SW = 3 - $SW;\r
-       }\r
-\r
-       // Free memory\r
-       SQL_FREERESULT($result);\r
-}\r
- else\r
-{\r
-       // Nothing for in and out\r
-       $OUT = "<TR>\r
-  <TD colspan=\"6\" align=\"center\" class=\"bottom2\" height=\"70\">\r
-    ".LOAD_TEMPLATE("admin_settings_saved", true, TRANSFER_NO_INOUT_TRANSFERS)."\r
-  </TD>\r
-</TR>";\r
-}\r
-\r
-// ... and add them to a constant for the template\r
-define('__TRANSFER_ROWS', $OUT);\r
-\r
-// Remeber total amount\r
-define('__TRANSFER_TOTAL_VALUE', $total);\r
-\r
-// Set title\r
-define('__TRANSFER_TITLE', TRANSFER_LIST_ALL);\r
-\r
-// Show delete button here\r
-define('__TRANSFER_DELETE', "<INPUT type=\"reset\" class=\"admin_reset\" value=\"".UNDO_SELECTIONS."\">&nbsp;*&nbsp;<INPUT type=\"submit\" name=\"del\" class=\"admin_delete\" value=\"".TRANSFER_DELETE."\">");\r
-\r
-// Load final template\r
-LOAD_TEMPLATE("admin_list_transfer");\r
-\r
-//\r
-?>\r
+<?php
+/************************************************************************
+ * MXChange v0.2.1                                    Start: 10/07/2004 *
+ * ================                             Last change: 11/25/2004 *
+ *                                                                      *
+ * -------------------------------------------------------------------- *
+ * File              : what-del_transfer.php                            *
+ * -------------------------------------------------------------------- *
+ * Short description : Point transfers                                  *
+ * -------------------------------------------------------------------- *
+ * Kurzbeschreibung  : Punktetransfers                                  *
+ * -------------------------------------------------------------------- *
+ *                                                                      *
+ * -------------------------------------------------------------------- *
+ * 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__));
+
+if (isset($_POST['del']))
+{
+       // Delete entries from tables
+       $SEL = SELECTION_COUNT($_POST['sel']);
+       if ($SEL > 0)
+       {
+               // Delete entries...
+               foreach ($_POST['sel'] as $id=>$sel)
+               {
+                       $result = SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM "._MYSQL_PREFIX."_user_transfers_in WHERE trans_id=%d LIMIT 1",
+                        array(bigintval($id)), __FILE__, __LINE__);
+                       $result = SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM "._MYSQL_PREFIX."_user_transfers_out WHERE trans_id=%d LIMIT 1",
+                        array(bigintval($id)), __FILE__, __LINE__);
+               }
+       }
+}
+
+// We only need outgoing transfers
+$result = SQL_QUERY("SELECT userid, to_uid, trans_id, points, reason, time_trans FROM "._MYSQL_PREFIX."_user_transfers_out ORDER BY trans_id", __FILE__, __LINE__);
+$total = "0";
+if (SQL_NUMROWS($result) > 0)
+{
+       // Output rows
+       $OUT = ""; $SW = 2;
+       while(list($uid1, $uid2, $idx, $points, $reason, $stamp) = SQL_FETCHROW($result))
+       {
+               // Prepare data for the row template
+               $content = array(
+                       'sw'       => $SW,
+                       'idx'      => $idx,
+                       'stamp'    => MAKE_DATETIME($stamp, "3"),
+                       'uid_from' => ADMIN_USER_PROFILE_LINK($uid1),
+                       'uid_to'   => ADMIN_USER_PROFILE_LINK($uid1),
+                       'reason'   => $reason,
+                       'points'   => TRANSLATE_COMMA($points),
+               );
+
+               // Load row template
+               $OUT .= LOAD_TEMPLATE("admin_del_transfer_row", true, $content);
+
+               // Sum points and switch colors
+               $total += $points; $SW = 3 - $SW;
+       }
+
+       // Free memory
+       SQL_FREERESULT($result);
+}
+ else
+{
+       // Nothing for in and out
+       $OUT = "<TR>
+  <TD colspan=\"6\" align=\"center\" class=\"bottom2\" height=\"70\">
+    ".LOAD_TEMPLATE("admin_settings_saved", true, TRANSFER_NO_INOUT_TRANSFERS)."
+  </TD>
+</TR>";
+}
+
+// ... and add them to a constant for the template
+define('__TRANSFER_ROWS', $OUT);
+
+// Remeber total amount
+define('__TRANSFER_TOTAL_VALUE', $total);
+
+// Set title
+define('__TRANSFER_TITLE', TRANSFER_LIST_ALL);
+
+// Show delete button here
+define('__TRANSFER_DELETE', "<INPUT type=\"reset\" class=\"admin_reset\" value=\"".UNDO_SELECTIONS."\">&nbsp;*&nbsp;<INPUT type=\"submit\" name=\"del\" class=\"admin_delete\" value=\"".TRANSFER_DELETE."\">");
+
+// Load final template
+LOAD_TEMPLATE("admin_list_transfer");
+
+//
+?>