X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=show_bonus.php;h=c5812223ef430fd04af96fc2ac6a38710a9d9bc9;hp=861d8ca78fe71c2237aa50ce1236fc2a6ebb184c;hb=9b016bdcfb1d242d5873c0a808b06359d3692660;hpb=43885129ac24cee5545a8a5ad51e90aa182fdf46 diff --git a/show_bonus.php b/show_bonus.php index 861d8ca78f..c5812223ef 100644 --- a/show_bonus.php +++ b/show_bonus.php @@ -1,7 +1,7 @@ 0) && ($_GET['d'] > 0) && (!empty($_GET['t']))) - { - // Set row name - $t = ""; - switch ($_GET['t']) - { - case "bonusid": - $t = "bonus_id"; +require('inc/config-global.php'); + +// Set content type +setContentType('text/html'); + +// Is the 'bonus' extension active? +redirectOnUninstalledExtension('bonus'); + +// Include header +loadPageHeader(); + +if ((isValidId(getRequestElement('userid'))) && (getRequestElement('d') > 0) && (isGetRequestElementSet('t'))) { + // Set row name + $t = ''; + switch (getRequestElement('t')) { + case 'bonusid': // Bonus mail + $t = 'bonus_id'; break; - case "mailid": - $t = "mail_id"; + case 'mailid': // Regular member mail + $t = 'mail_id'; break; - } - if (!empty($t)) - { - // Check for data - $result = SQL_QUERY_ESC("SELECT DISTINCT d.sex, d.surname, d.family, b.level, b.points -FROM "._MYSQL_PREFIX."_user_data AS d -RIGHT JOIN "._MYSQL_PREFIX."_bonus_turbo AS b -ON d.userid=b.userid -WHERE d.status='CONFIRMED' AND d.userid=%s AND b.".$t."='%s' LIMIT 1", - array(bigintval($_GET['uid']), bigintval($_GET['d'])), __FILE__, __LINE__); - if (SQL_NUMROWS($result) == 1) - { - // Load data - list($sex, $sname, $fname, $level, $points) = SQL_FETCHROW($result); - - // Prepare constants for the pre-template - define('__SALUT' , TRANSLATE_SEX($sex)); - define('__SNAME' , $sname); - define('__FNAME' , $fname); - define('__RANK' , $level); - define('__POINTS' , $points); - define('__MAILID' , $_GET['d']); - define('__RANK_ROWS', BONUS_MAKE_RANK_ROWS(bigintval($_GET['d']), $t, bigintval($_GET['uid']))); - - // Constant created within previous function which contains informations for current user's ranking position: - // __YOUR_RANKING_LINE - - // Load pre-template - define('__BONUS_MSG', LOAD_TEMPLATE("show_bonus_msg", true)); - } - else - { - // No data found - define('__BONUS_MSG', "".BONUS_SHOW_NO_DATA.""); - } - - // Free memory - SQL_FREERESULT($result); - } - else - { - // Wrong type entered - define('__BONUS_MSG', "".BONUS_SHOW_WRONG_TYPE.""); - } - } - else - { - // Wrong call! - define('__BONUS_MSG', "".BONUS_SHOW_WRONG_CALL.""); - } - // Load send_bonus header template (for your banners, e.g.?) - define('__BONUS_HEADER', LOAD_TEMPLATE("show_bonus_header", true)); + default: // Invalid type + logDebugMessage(__FILE__, __LINE__, sprintf('Invalid type %s detected.', getRequestElement('t'))); + break; + } // END - switch + + // Valid type? + if (!empty($t)) { + // Check for data + $result = sqlQueryEscaped("SELECT + `d`.`userid`, + `b`.`level`, + `b`.`points` +FROM + `{?_MYSQL_PREFIX?}_user_data` AS `d` +INNER JOIN + `{?_MYSQL_PREFIX?}_bonus_turbo` AS `b` +ON + `d`.`userid`=`b`.`userid` +WHERE + `d`.`status`='CONFIRMED' AND + `d`.`userid`=%s AND + `b`.`%s`=%s +LIMIT 1", + array( + bigintval(getRequestElement('userid')), + $t, + bigintval(getRequestElement('d')) + ), __FILE__, __LINE__); + + // Entry found? + if (sqlNumRows($result) == 1) { + // Load data + $content = sqlFetchArray($result); + + // Prepare constants for the pre-template + $content['mailid'] = bigintval(getRequestElement('d')); + $content['rows'] = addBonusRanks(bigintval(getRequestElement('d')), $t, bigintval(getRequestElement('userid'))); + + // Get some prepared content + $content = merge_array($content, $GLOBALS['ranking_content']); + + // Load pre-template + $content['message'] = loadTemplate('show_bonus_msg', TRUE, $content); + } else { + // No data found + $content['message'] = '{--BONUS_SHOW_NO_DATA--}'; + } - // Load show_bonus footer template (for your banners, e.g.?) - define('__BONUS_FOOTER', LOAD_TEMPLATE("show_bonus_footer", true)); + // Free memory + sqlFreeResult($result); + } else { + // Wrong type entered + $content['message'] = '{--BONUS_SHOW_WRONG_TYPE--}'; + } +} else { + // Wrong call! + $content['message'] = '{--BONUS_SHOW_WRONG_CALL--}'; +} - // Total ranks who can win - define('__BONUS_TOTAL_RANKS', $_CONFIG['bonus_ranks']); +// Load final template +loadTemplate('show_bonus', FALSE, $content); - // Load final template - LOAD_TEMPLATE("show_bonus"); +// Include footer +loadPageFooter(); - // Include footer - include(PATH."inc/footer.php"); -} - else -{ - // You have to configure first! - LOAD_URL("install.php"); -} -// Really all done here... ;-) +// [EOF] ?>