$selected) { // Secure id number and init $content $content = array( 'id' => bigintval($id), 'refid' => 0 ); // Load his personal data $result_main = sqlQueryEscaped("SELECT `id`, `gender`, `surname`, `family`, `email`, `remote_addr`, UNIX_TIMESTAMP(`sponsor_created`) AS `sponsor_created`, `points_amount`, `points_used`, (`points_amount` + `points_used`) AS `points`, `refid` FROM `{?_MYSQL_PREFIX?}_sponsor_data` WHERE `status` IN('PENDING','UNCONFIRMED') AND `id`=%s LIMIT 1", array($content['id']), __FILE__, __LINE__); // Is there an entry? if (sqlNumRows($result_main) == 1) { // Load data $content = sqlFetchArray($result_main); // Check for open payments and close them $result = sqlQueryEscaped("SELECT `so`.`admin_id`, `so`.`pay_count`, UNIX_TIMESTAMP(`so`.`pay_ordered`) AS `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`.`payment_id` WHERE `so`.`sponsor_id`=%s ORDER BY `sp`.`pay_name` ASC", array($content['id']), __FILE__, __LINE__); if (!ifSqlHasZeroNumRows($result)) { // Payment does exist while ($content2 = sqlFetchArray($result)) { // Merge both arrays $content = merge_array($content, $content2); // Set default email $content['email'] = '{--SPONSOR_NO_ADMIN--}'; if (isValidId($content['admin_id'])) { // Load admin's email address for contact $content['email'] = getAdminEmail($content['admin_id']); } // END - if // Transfer data to array $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['message'] = loadEmailTemplate('sponsor_unlock_sponsor_pay', $data, $content['id']); } } else { // No payments found $content['message'] = '{--SPONSOR_NO_PAYMENTS_FOUND--}'; } // Free memory sqlFreeResult($result); } else { // Not found displayMessage('{%message,ADMIN_SPONSOR_ACCOUNT_404_ALREADY_CONFIRMED=' . $content['id'] . '%}'); return; } // Free memory sqlFreeResult($result_main); // Unlock sponsor account sqlQueryEscaped("UPDATE `{?_MYSQL_PREFIX?}_sponsor_data` SET `status`='CONFIRMED' WHERE `id`=%s AND `status` IN('PENDING','UNCONFIRMED') LIMIT 1", array($content['id']), __FILE__, __LINE__); // Update, if applyable, referral count and points if ((isValidId($content['refid'])) && ($content['refid'] != $content['id'])) { // Update referral account sqlQueryEscaped("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 (!ifSqlHasZeroAffectedRows()) { // Load referral's data $result = sqlQueryEscaped("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__); $REFERRAL = sqlFetchArray($result); // Send warnings out? if ($REFERRAL['receive_warnings'] == 'Y') { // Send notification to referral $REFERRAL_MSG = loadEmailTemplate('sponsor_ref_notify', $REFERRAL); sendEmail($REFERRAL['email'], '{--SPONSOR_REFERRAL_NOTIFY_SUBJECT--}', $REFERRAL_MSG); } // END - if // Free memory sqlFreeResult($result); } // END - if } // END - if // So let's send the email away $message = loadEmailTemplate('sponsor_unlocked', $content); sendEmail($content['email'], '{--SPONSOR_UNLOCKED_SUBJECT--}', $message); } // END - foreach } else { // Nothing selected displayMessage('{--ADMIN_SPONSOR_NONE_SELECTED_UNLOCK--}'); } } // END - if // Begin listing of all pending sponsor accounts $result = sqlQuery("SELECT `id`, `gender`, `surname`, `family`, `email`, `remote_addr`, UNIX_TIMESTAMP(`sponsor_created`) AS `sponsor_created` FROM `{?_MYSQL_PREFIX?}_sponsor_data` WHERE `status` IN('PENDING','UNCONFIRMED') ORDER BY `id`", __FILE__, __LINE__); if (!ifSqlHasZeroNumRows($result)) { // Entries found so let's list them! $OUT = ''; while ($content = sqlFetchArray($result)) { // Translate some data $content['sponsor_created'] = generateDateTime($content['sponsor_created'], 2); // Load row template and switch colors $OUT .= loadTemplate('admin_unlock_sponsor_row', TRUE, $content); } // END - while // Load template loadTemplate('admin_unlock_sponsor', FALSE, $OUT); } else { // No pending accounts found displayMessage('{--ADMIN_SPONSOR_NONE_PENDING--}'); } // Free memory sqlFreeResult($result); // [EOF] ?>