X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-unlock_sponsor.php;h=e8676e512ac9274e2e097c1e0105d5afc06f7ad8;hp=a4c552c97c0e0a71d63f67082dab01ac06a14177;hb=04b69ac9f33369cbf654396c4a42cb1fff710ff4;hpb=c47144dd555bbab4acdf9085e4623900dedb0e7c diff --git a/inc/modules/admin/what-unlock_sponsor.php b/inc/modules/admin/what-unlock_sponsor.php index a4c552c97c..e8676e512a 100644 --- a/inc/modules/admin/what-unlock_sponsor.php +++ b/inc/modules/admin/what-unlock_sponsor.php @@ -1,7 +1,7 @@ 0) { + if (countSelection(postRequestParameter('id')) > 0) { // At least one entry selected - foreach ($_POST['id'] as $id => $sel) { - // Secure ID number - $id = bigintval($id); + foreach (postRequestParameter('id') as $id => $selected) { + // Secure id number and init $content + $content = array( + 'id' => bigintval($id), + 'refid' => 0 + ); // Load his personal data - $result_main = SQL_QUERY_ESC("SELECT gender, surname, family, email, remote_addr, sponsor_created, points_amount, refid -FROM `{!_MYSQL_PREFIX!}_sponsor_data` -WHERE `status`='PENDING' AND id='%s' LIMIT 1", - array($id), __FILE__, __LINE__); - $refid = 0; + $result_main = SQL_QUERY_ESC("SELECT + `gender`, `surname`, `family`, `email`, `remote_addr`, `sponsor_created`, `points_amount`, `refid` +FROM + `{?_MYSQL_PREFIX?}_sponsor_data` +WHERE + `status`='PENDING' AND + `id`=%s +LIMIT 1", + array($content['id']), __FILE__, __LINE__); + if (SQL_NUMROWS($result_main) == 1) { - // Load data and free memory - list($gender, $sname, $fname, $email, $ip, $created, $points, $refid) = SQL_FETCHROW($result_main); + // Load data + $content = SQL_FETCHARRAY($result_main); // Check for open payments and close them - $result = SQL_QUERY_ESC("SELECT DISTINCT so.aid, so.pay_count, so.pay_ordered, so.pay_status, -sp.pay_name, sp.pay_rate, sp.pay_currency -FROM `{!_MYSQL_PREFIX!}_sponsor_orders` AS so -LEFT JOIN `{!_MYSQL_PREFIX!}_sponsor_paytypes` AS sp -ON sp.id=so.payid -WHERE so.sponsorid='%s' -ORDER BY sp.pay_name", - array($id), __FILE__, __LINE__); + $result = SQL_QUERY_ESC("SELECT + so.admin_id, so.pay_count, so.pay_ordered, so.pay_status, + sp.pay_name, sp.pay_rate, sp.pay_currency +FROM + `{?_MYSQL_PREFIX?}_sponsor_orders` AS so +LEFT JOIN + `{?_MYSQL_PREFIX?}_sponsor_paytypes` AS sp +ON + sp.id=so.payid +WHERE + so.sponsorid='%s' +ORDER BY + sp.pay_name ASC", + array($content['id']), __FILE__, __LINE__); if (SQL_NUMROWS($result) > 0) { // Payment does exist - while (list($aid, $count, $ordered, $status, $pname, $prate, $pcurr) = SQL_FETCHROW($result)) - { + while ($content2 = SQL_FETCHARRAY($result)) { + // Merge both arrays + $content = merge_array($content, $content2); + // Set default email - $email = SPONSOR_NO_ADMIN; - if ($aid > "0") { + $content['email'] = getMessage('SPONSOR_NO_ADMIN'); + if ($content['admin_id'] > 0) { // Load admin's email address for contact - $email = GET_ADMIN_EMAIL($aid); - } + $content['email'] = getAdminEmail($content['admin_id']); + } // END - if // Transfer data to array - $content = array( - 'aid' => $email, - 'order' => ($count * $prate)." ".$pcurr, - 'stamp' => MAKE_DATETIME($ordered, "2"), - 'pname' => $pname, + $data = array( + 'admin_id' => $content['email'], + 'order' => ($content['pay_count'] * $content['pay_rate']) . ' ' . $content['pay_currency'], + 'stamp' => generateDateTime($content['pay_ordered'], 2), + 'pname' => $content['pay_name'], ); - + // Load email template - $content['msg'] = LOAD_EMAIL_TEMPLATE("sponsor_unlock_sponsor_pay", $content, $id); + $content['message'] = loadEmailTemplate('sponsor_unlock_sponsor_pay', $data, $content['id']); } } else { // No payments found - $content['msg'] = SPONSOR_NO_PAYMENTS_FOUND; + $content['message'] = getMessage('SPONSOR_NO_PAYMENTS_FOUND'); } // Free memory @@ -103,70 +124,73 @@ ORDER BY sp.pay_name", SQL_FREERESULT($result_main); // Unlock sponsor account - SQL_QUERY_ESC("UPDATE `{!_MYSQL_PREFIX!}_sponsor_data` SET `status`='CONFIRMED' -WHERE id='%s' AND `status`='PENDING' LIMIT 1", - array($id), __FILE__, __LINE__); + SQL_QUERY_ESC("UPDATE + `{?_MYSQL_PREFIX?}_sponsor_data` +SET + `status`='CONFIRMED' +WHERE + `id`=%s AND + `status`='PENDING' +LIMIT 1", + array($content['id']), __FILE__, __LINE__); // Update, if applyable, referal count and points - if (($refid > 0) && ($refid != $id)) { + if ((isValidUserId($content['refid'])) && ($content['refid'] != $content['id'])) { // Update referal account - SQL_QUERY_ESC("UPDATE `{!_MYSQL_PREFIX!}_sponsor_data` -SET points_amount=points_amount+%s, ref_count=ref_count+1 -WHERE id='%s' LIMIT 1", - array(getConfig('sponsor_ref_points'), bigintval($refid)), __FILE__, __LINE__); + SQL_QUERY_ESC("UPDATE + `{?_MYSQL_PREFIX?}_sponsor_data` +SET + `points_amount`=`points_amount`+{?sponsor_ref_points?}, `ref_count`=`ref_count`+1 +WHERE + `id`=%s +LIMIT 1", + array(bigintval($content['refid'])), __FILE__, __LINE__); // Whas that update fine? if (SQL_AFFECTEDROWS() == 1) { // Load referal's data - $result = SQL_QUERY_ESC("SELECT id, gender, surname, family, email, -(points_amount - points_used) AS points, receive_warnings, ref_count AS refs -FROM `{!_MYSQL_PREFIX!}_sponsor_data` -WHERE id='%s' LIMIT 1", - array(bigintval($refid)), __FILE__, __LINE__); - $REFERRAL = SQL_FETCHARRAY($result); + $result = SQL_QUERY_ESC("SELECT + `id`, `gender`, `surname`, `family`, `email`, + (`points_amount` - `points_used`) AS points, + `receive_warnings`, `ref_count` AS refs +FROM + `{?_MYSQL_PREFIX?}_sponsor_data` +WHERE + `id`=%s +LIMIT 1", + array(bigintval($content['refid'])), __FILE__, __LINE__); + $REFERAL = SQL_FETCHARRAY($result); // Send warnings out? - if ($REFERRAL['receive_warnings'] == "Y") { - // Translate some data - $REFERRAL['points'] = TRANSLATE_COMMA($REFERRAL['points']); - $REFERRAL['ref_points'] = TRANSLATE_COMMA(getConfig('sponsor_ref_points')); - $REFERRAL['gender'] = TRANSLATE_GENDER($REFERRAL['gender']); - + if ($REFERAL['receive_warnings'] == 'Y') { // Send notification to referal - $REF_MSG = LOAD_EMAIL_TEMPLATE("sponsor_ref_notify", $REFERRAL); - SEND_EMAIL($REFERRAL['email'], getMessage('SPONSOR_REF_NOTIFY_SUBJ'), $REF_MSG); - } + $REF_MSG = loadEmailTemplate('sponsor_ref_notify', $REFERAL); + sendEmail($REFERAL['email'], getMessage('SPONSOR_REF_NOTIFY_SUBJ'), $REF_MSG); + } // END - if // Free memory SQL_FREERESULT($result); - } - } + } // END - if + } // END - if // Transfer data to array - $content['gender'] = TRANSLATE_GENDER($gender); - $content['surname'] = $sname; - $content['family'] = $fname; - $content['sponsor'] = $id; - $content['points'] = TRANSLATE_COMMA($points); + $content['points'] = translateComma($content['points_amount']); // So let's send the email away - $msg = LOAD_EMAIL_TEMPLATE("sponsor_unlocked", $content); - SEND_EMAIL($email, getMessage('SPONSOR_UNLOCKED_SUBJ'), $msg); - } + $message = loadEmailTemplate('sponsor_unlocked', $content); + sendEmail($content['email'], getMessage('SPONSOR_UNLOCKED_SUBJ'), $message); + } // END - foreach } else { // Nothing selected - LOAD_TEMPLATE("admin_settings_saved", false, getMessage('ADMIN_SPONSOR_NONE_SELECTED_UNLOCK')); + loadTemplate('admin_settings_saved', false, '{--ADMIN_SPONSOR_NONE_SELECTED_UNLOCK--}'); } - - // Add seperator - OUTPUT_HTML("
"); -} +} // END - if // Begin listing of all pending sponsor accounts $result = SQL_QUERY("SELECT - id, gender, surname, family, email, remote_addr, sponsor_created + `id`, `gender`, `surname`, `family`, `email`, `remote_addr`, `sponsor_created` FROM - `{!_MYSQL_PREFIX!}_sponsor_data` + `{?_MYSQL_PREFIX?}_sponsor_data` WHERE `status`='PENDING' ORDER BY @@ -174,35 +198,34 @@ ORDER BY if (SQL_NUMROWS($result) > 0) { // Entries found so let's list them! - $OUT = ""; $SW = 2; - while (list($id, $gender, $sname, $fname, $email, $ip, $created) = SQL_FETCHROW($result)) { + $OUT = ''; $SW = 2; + while ($content = SQL_FETCHARRAY($result)) { // Transfer data to array $content = array( - 'sw' => $SW, - 'id' => $id, - 'gender' => TRANSLATE_GENDER($gender), - 'surname' => $sname, - 'family' => $fname, - 'email' => "mailto:".$email, - 'remote' => $ip, - 'created' => MAKE_DATETIME($created, "2"), + 'sw' => $SW, + 'id' => $content['id'], + 'gender' => $content['gender'], + 'surname' => $content['surname'], + 'family' => $content['family'], + 'email' => generateEmailLink($content['email'], 'sponsor_data'), + 'remote_addr' => $content['remote_addr'], + 'sponsor_created' => generateDateTime($content['sponsor_created'], 2), ); // Load row template and switch colors - $OUT .= LOAD_TEMPLATE("admin_unlock_sponsor_row", true, $content); + $OUT .= loadTemplate('admin_unlock_sponsor_row', true, $content); $SW = 3 - $SW; - } - define('__SPONSOR_ROWS', $OUT); + } // END - while // Load template - LOAD_TEMPLATE("admin_unlock_sponsor"); + loadTemplate('admin_unlock_sponsor', false, $OUT); } else { // No pending accounts found - LOAD_TEMPLATE("admin_settings_saved", false, getMessage('ADMIN_SPONSOR_NONE_PENDING')); + loadTemplate('admin_settings_saved', false, '{--ADMIN_SPONSOR_NONE_PENDING--}'); } // Free memory SQL_FREERESULT($result); -// +// [EOF] ?>