]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/admin/what-del_transfer.php
Rewritten to not use anymore
[mailer.git] / inc / modules / admin / what-del_transfer.php
index 32fd02b1989c42edb6075352358b86c67ad34e4f..8100ac79d7357280ee95fb7446b10acc5d088c29 100644 (file)
  * -------------------------------------------------------------------- *
  * Kurzbeschreibung  : Punktetransfers                                  *
  * -------------------------------------------------------------------- *
- * $Revision:: 856                                                    $ *
- * $Date:: 2009-03-06 20:24:32 +0100 (Fr, 06. Mär 2009)              $ *
+ * $Revision::                                                        $ *
+ * $Date::                                                            $ *
  * $Tag:: 0.2.1-FINAL                                                 $ *
- * $Author:: stelzi                                                   $ *
+ * $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                           *
  * 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);
+if ((!defined('__SECURITY')) || (!isAdmin())) {
+       die();
 }
 
 // Add description as navigation point
-ADD_DESCR("admin", __FILE__);
+addMenuDescription('admin', __FILE__);
 
-if (REQUEST_ISSET_POST('del')) {
+if (isPostRequestElementSet('del')) {
        // Delete entries from tables
-       $SEL = SELECTION_COUNT(REQUEST_POST('sel'));
-       if ($SEL > 0) {
+       if (countPostSelection() > 0) {
                // Init SQLs
-               INIT_SQLS();
+               initSqls();
 
                // Delete entries...
-               foreach (REQUEST_POST('sel') as $id => $sel) {
-                       ADD_SQL(SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM `{!_MYSQL_PREFIX!}_user_transfers_in` WHERE trans_id=%s LIMIT 1",
+               foreach (postRequestElement('sel') as $id => $sel) {
+                       addSql(SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_user_transfers_in` WHERE `trans_id`=%s LIMIT 1",
                                array(bigintval($id)), __FILE__, __LINE__, false));
-                       ADD_SQL(SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM `{!_MYSQL_PREFIX!}_user_transfers_out` WHERE trans_id=%s LIMIT 1",
+                       addSql(SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_user_transfers_out` WHERE `trans_id`=%s LIMIT 1",
                                array(bigintval($id)), __FILE__, __LINE__, false));
                } // END - foreach
 
                // Run all SQLs
                runFilterChain('run_sqls');
-       }
-}
+       } // END - if
+} // END - if
 
 // 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;
+$result = SQL_QUERY("SELECT `userid`, `to_userid`, `trans_id`, `points`, `reason`, `time_trans` FROM `{?_MYSQL_PREFIX?}_user_transfers_out` ORDER BY `trans_id` ASC", __FILE__, __LINE__);
+$total = '0';
 if (SQL_NUMROWS($result) > 0) {
        // Output rows
-       $OUT = ""; $SW = 2;
+       $OUT = ''; $SW = 2;
        while ($content = SQL_FETCHARRAY($result)) {
                // Prepare data for the row template
-               // @TODO Rewritings: idx->trans_id in template
                $content = array(
-                       'sw'       => $SW,
-                       'idx'      => $content['trans_id'],
-                       'stamp'    => MAKE_DATETIME($content['time_trans'], "3"),
-                       'uid_from' => ADMIN_USER_PROFILE_LINK($content['userid']),
-                       'uid_to'   => ADMIN_USER_PROFILE_LINK($content['to_uid']),
-                       'reason'   => $content['reason'],
-                       'points'   => TRANSLATE_COMMA($content['points']),
+                       'sw'          => $SW,
+                       'trans_id'    => $content['trans_id'],
+                       'stamp'       => generateDateTime($content['time_trans'], 3),
+                       'userid_from' => generateUserProfileLink($content['userid']),
+                       'userid_to'   => generateUserProfileLink($content['to_userid']),
+                       'reason'      => $content['reason'],
+                       'points'      => translateComma($content['points']),
                );
 
                // Load row template
-               $OUT .= LOAD_TEMPLATE("admin_del_transfer_row", true, $content);
+               $OUT .= loadTemplate('admin_del_transfer_row', true, $content);
 
                // Sum points and switch colors
                $total += $content['points']; $SW = 3 - $SW;
-       }
+       } // END - while
 
        // Free memory
        SQL_FREERESULT($result);
@@ -97,26 +94,25 @@ if (SQL_NUMROWS($result) > 0) {
        // Nothing for in and out
        $OUT = "<tr>
   <td colspan=\"6\" align=\"center\" class=\"bottom2\" height=\"70\">
-    ".LOAD_TEMPLATE("admin_settings_saved", true, getMessage('TRANSFER_NO_INOUT_TRANSFERS'))."
+    ".loadTemplate('admin_settings_saved', true, getMessage('TRANSFER_NO_INOUT_TRANSFERS'))."
   </td>
 </tr>";
 }
 
 // ... and add them to a constant for the template
-// @TODO Rewrite all these constants
-define('__TRANSFER_ROWS', $OUT);
+$content['rows'] = $OUT;
 
 // Remeber total amount
-define('__TRANSFER_TOTAL_VALUE', $total);
+$content['total'] = translateComma($total);
 
 // Set title
-define('__TRANSFER_TITLE', getMessage('TRANSFER_LIST_ALL'));
+$content['title'] = getMessage('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--}\" />");
+$content['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");
+loadTemplate('admin_list_transfer', false, $content);
 
-//
+// [EOF]
 ?>