X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;ds=sidebyside;f=inc%2Fmodules%2Fadmin%2Fwhat-list_payouts.php;h=a4c330c85a5bb352d8c14e665d1a9e6f77a724d0;hb=1d22c70e65e858422ee0d17a7612f4b5c0757a42;hp=dcb186be059e0eebcce761754f9a5b44c6b6bcb5;hpb=00e734ff1236dc875952f5b34dada9892568e7cd;p=mailer.git diff --git a/inc/modules/admin/what-list_payouts.php b/inc/modules/admin/what-list_payouts.php index dcb186be05..a4c330c85a 100644 --- a/inc/modules/admin/what-list_payouts.php +++ b/inc/modules/admin/what-list_payouts.php @@ -16,8 +16,8 @@ * $Author:: $ * * -------------------------------------------------------------------- * * Copyright (c) 2003 - 2009 by Roland Haeder * - * Copyright (c) 2009 - 2011 by Mailer Developer Team * - * For more information visit: http://www.mxchange.org * + * 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 * * it under the terms of the GNU General Public License as published by * @@ -43,15 +43,15 @@ if ((!defined('__SECURITY')) || (!isAdmin())) { // Add description as navigation point addYouAreHereLink('admin', __FILE__); -if (isGetRequestParameterSet('pid')) { +if (isGetRequestElementSet('pid')) { // First let's get the member's id $result = SQL_QUERY_ESC("SELECT `userid`, `target_account`, `payout_total`, `payout_timestamp`, `password` FROM `{?_MYSQL_PREFIX?}_user_payouts` WHERE `id`=%s LIMIT 1", - array(getRequestParameter('pid')), __FILE__, __LINE__); + array(getRequestElement('pid')), __FILE__, __LINE__); list($userid, $tuserid, $points, $tstamp, $tpass) = SQL_FETCHROW($result); SQL_FREERESULT($result); // Obtain some data - if (!isGetRequestParameterSet('task') && (!empty($userid)) && (isValidUserId($userid))) { + if (!isGetRequestElementSet('task') && (!empty($userid)) && (isValidUserId($userid))) { // Get task id from database $result = SQL_QUERY_ESC("SELECT `id` FROM `{?_MYSQL_PREFIX?}_task_system` WHERE `userid`=%s AND `task_type`='PAYOUT_REQUEST' AND `task_created`=%s LIMIT 1", array(bigintval($userid), bigintval($tstamp)), __FILE__, __LINE__); @@ -63,22 +63,22 @@ if (isGetRequestParameterSet('pid')) { displayMessage('{--ADMIN_PAYOUT_FAILED_OBTAIN_USERID--}'); } else { // Get task id from URL - $taskId = getRequestParameter('task'); + $taskId = getRequestElement('task'); } if ((!empty($taskId)) && (!empty($userid)) && (isValidUserId($userid))) { // Load user's data if (!fetchUserData($userid)) { // Abort here because it is not valid! - debug_report_bug(__FILE__, __LINE__, 'No user account ' . $userid . ' found.'); + reportBug(__FILE__, __LINE__, 'No user account ' . $userid . ' found.'); } // END - if - if ((getRequestParameter('do') == 'accept') && (getUserData('email') != '')) { + if ((getRequestElement('do') == 'accept') && (getUserData('email') != '')) { // Ok, now we can output the form or execute accepting if (isFormSent()) { // Obtain payout type and other data $result = SQL_QUERY_ESC("SELECT `payout_id` FROM `{?_MYSQL_PREFIX?}_user_payouts` WHERE `id`=%s LIMIT 1", - array(bigintval(getRequestParameter('pid'))), __FILE__, __LINE__); + array(bigintval(getRequestElement('pid'))), __FILE__, __LINE__); // Load ptype (id) list($ptype) = SQL_FETCHROW($result); @@ -89,7 +89,13 @@ if (isGetRequestParameterSet('pid')) { if (!empty($ptype)) { // Obtain data from payout type $result = SQL_QUERY_ESC("SELECT - `from_account`,`from_pass`,`engine_url`,`engine_ret_ok`,`engine_ret_failed`,`pass_enc`,`allow_url` + `from_account`, + `from_pass`, + `engine_url`, + `engine_ret_ok`, + `engine_ret_failed`, + `pass_enc`, + `allow_url` FROM `{?_MYSQL_PREFIX?}_payout_types` WHERE @@ -118,7 +124,7 @@ LIMIT 1", } // END - switch // Transfer variables... - $reason = encodeString(getMessage('ADMIN_PAYOUT_REASON'), false); + $reason = encodeString(getMessage('ADMIN_PAYOUT_REASON'), FALSE); // Execute transfer $ret = sendGetRequest($data['engine_url']); @@ -131,14 +137,14 @@ LIMIT 1", // Clear task if ($taskId > 0) { runFilterChain('solve_task', $taskId); - } + } // END - if // Clear payout request SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_user_payouts` SET `status`='ACCEPTED' WHERE `id`=%s LIMIT 1", - array(bigintval(getRequestParameter('pid'))), __FILE__, __LINE__); + array(bigintval(getRequestElement('pid'))), __FILE__, __LINE__); // Send out mail - $message = loadEmailTemplate('member_payout_accepted', postRequestParameter('text'), $userid); + $message = loadEmailTemplate('member_payout_accepted', postRequestElement('text'), $userid); // Output message if ($data['allow_url'] == 'Y') { @@ -154,24 +160,24 @@ LIMIT 1", } else { // Something goes wrong... :-( $content = implode('
', $ret); - loadTemplate('admin_payout_failed_transfer', false, $content); + loadTemplate('admin_payout_failed_transfer', FALSE, $content); } } else { // Cannot load payout id - loadTemplate('admin_settings_unsaved', false, '{--ADMIN_PAYOUT_FAILED_OBTAIN_PAYOUT_ID--}'); + loadTemplate('admin_settings_unsaved', FALSE, '{--ADMIN_PAYOUT_FAILED_OBTAIN_PAYOUT_ID--}'); } } else { // Prepare content $content = array( 'task' => $taskId, - 'pid' => bigintval(getRequestParameter('pid')), + 'pid' => bigintval(getRequestElement('pid')), 'user' => '{%pipe,translateGender=' . getUserData('gender') . '%} ' . getUserData('surname') . ' ' . getUserData('family') . '', ); // Load template - loadTemplate('admin_payout_accept_form', false, $content); + loadTemplate('admin_payout_accept_form', FALSE, $content); } - } elseif ((getRequestParameter('do') == 'reject') && (getUserData('email') != '')) { + } elseif ((getRequestElement('do') == 'reject') && (getUserData('email') != '')) { // Ok, now we can output the form or execute rejecting if (isFormSent()) { if ($taskId > 0) { @@ -181,10 +187,10 @@ LIMIT 1", // Clear payout request SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_user_payouts` SET `status`='REJECTED' WHERE `id`=%s LIMIT 1", - array(bigintval(getRequestParameter('pid'))), __FILE__, __LINE__); + array(bigintval(getRequestElement('pid'))), __FILE__, __LINE__); // Send out mail - $message = loadEmailTemplate('member_payout_rejected', postRequestParameter('text'), $userid); + $message = loadEmailTemplate('member_payout_rejected', postRequestElement('text'), $userid); // Output message displayMessage('{--ADMIN_PAYOUT_REJECTED_NOTIFIED--}'); @@ -195,12 +201,12 @@ LIMIT 1", // Prepare content $content = array( 'task' => $taskId, - 'pid' => bigintval(getRequestParameter('pid')), + 'pid' => bigintval(getRequestElement('pid')), 'user' => '{%pipe,translateGender=' . getUserData('gender') . '%} ' . getUserData('surname') . ' ' . getUserData('family') . '', ); // Load template - loadTemplate('admin_payout_reject_form', false, $content); + loadTemplate('admin_payout_reject_form', FALSE, $content); } } else { // Cannot load user data @@ -211,7 +217,7 @@ LIMIT 1", displayMessage('{--ADMIN_PAYOUT_FAILED_OBTAIN_TASK_ID--}'); } } else { - if (getRequestParameter('do') == 'delete') { + if (getRequestElement('do') == 'delete') { // Delete all requests $result = SQL_QUERY("TRUNCATE `{?_MYSQL_PREFIX?}_user_payouts`", __FILE__, __LINE__); } // END - if @@ -248,10 +254,10 @@ ORDER BY // Banner/Textlink views/clicks request if (!empty($content['banner'])) { // Load template for the banner - $content['target_account'] = loadTemplate('admin_list_payouts_banner', true, $content); + $content['target_account'] = loadTemplate('admin_list_payouts_banner', TRUE, $content); } else { // Textlink - $content['target_account'] = loadTemplate('admin_list_payouts_txt', true, $content); + $content['target_account'] = loadTemplate('admin_list_payouts_txt', TRUE, $content); } // Admins can addionally test the URL for framekillers @@ -262,14 +268,14 @@ ORDER BY $content['payout_timestamp'] = generateDateTime($content['payout_timestamp'], 2); // Add row and switch color - $OUT .= loadTemplate('admin_list_payouts_row', true, $content); + $OUT .= loadTemplate('admin_list_payouts_row', TRUE, $content); } // END - while // Free memory SQL_FREERESULT($result); // Load final template - loadTemplate('admin_list_payouts', false, $OUT); + loadTemplate('admin_list_payouts', FALSE, $OUT); } else { // No payout requests are sent so far displayMessage('{--ADMIN_PAYOUT_NO_REQUESTS_FOUND--}');