]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/admin/what-list_transfer.php
More XHTML-fied and extended header added to templates
[mailer.git] / inc / modules / admin / what-list_transfer.php
index 64b64747506fbfc7a3beb65118dcd5390448cd7b..ebc093d67edc4768891d4b28053fe3a205ed1bb4 100644 (file)
  * -------------------------------------------------------------------- *
  * Kurzbeschreibung  : Punktetransfers                                  *
  * -------------------------------------------------------------------- *
- *                                                                      *
+ * $Revision:: 856                                                    $ *
+ * $Date:: 2009-03-06 20:24:32 +0100 (Fr, 06. March 2009)             $ *
+ * $Tag:: 0.2.1-FINAL                                                 $ *
+ * $Author:: stelzi                                                   $ *
+ * 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                           *
  * For more information visit: http://www.mxchange.org                  *
  ************************************************************************/
 
 // Some security stuff...
-if (ereg(basename(__FILE__), $_SERVER['PHP_SELF']) || (!IS_ADMIN()))
-{
+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__));
+ADD_DESCR("admin", __FILE__);
 
 // 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__);
+$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))
-       {
+       while ($content = SQL_FETCHARRAY($result)) {
                // Prepare data for the row template
                $content = array(
                        'sw'        => $SW,
-                       'idx'       => $idx,
-                       'stamp'     => MAKE_DATETIME($stamp, "3"),
-                       'from_link' => ADMIN_USER_PROFILE_LINK($uid1),
-                       'to_link'   => ADMIN_USER_PROFILE_LINK($uid2),
-                       'reason'    => wordwrap($reason, 15),
-                       'points'    => TRANSLATE_COMMA($points),
+                       'idx'       => $content['trans_id'],
+                       'stamp'     => MAKE_DATETIME($content['time_trans'], "3"),
+                       'from_link' => ADMIN_USER_PROFILE_LINK($content['userid']),
+                       'to_link'   => ADMIN_USER_PROFILE_LINK($content['to_uid']),
+                       'reason'    => wordwrap($content['reason'], 15),
+                       'points'    => TRANSLATE_COMMA($content['points']),
                );
 
                // Load row template add points and switch color
                $OUT .= LOAD_TEMPLATE("admin_list_transfer_row", true, $content);
-               $total += $points; $SW = 3 - $SW;
+               $total += $content['points']; $SW = 3 - $SW;
        }
 
        // Free memory
@@ -72,24 +75,25 @@ if (SQL_NUMROWS($result) > 0)
  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>";
+       $OUT = "<tr>
+  <td colspan=\"6\" align=\"center\" class=\"bottom2\" height=\"70\">
+    ".LOAD_TEMPLATE("admin_settings_saved", true, getMessage('TRANSFER_NO_INOUT_TRANSFERS'))."
+  </td>
+</tr>";
 }
 
 // ... and add them to a constant for the template
+// @TODO Rewrite these constants
 define('__TRANSFER_ROWS', $OUT);
 
 // Remeber total amount
 define('__TRANSFER_TOTAL_VALUE', TRANSLATE_COMMA($total));
 
 // Set title
-define('__TRANSFER_TITLE', TRANSFER_LIST_ALL);
+define('__TRANSFER_TITLE', getMessage('TRANSFER_LIST_ALL'));
 
 // Set "balance" word
-define('__TRANSFER_SUM', TRANSFER_TOTAL_BALANCE);
+define('__TRANSFER_SUM', getMessage('TRANSFER_TOTAL_BALANCE'));
 
 // Don't show a delete button
 define('__TRANSFER_DELETE', "&nbsp;");