X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=birthday_confirm.php;h=7d4068456c462d8c7e5361e42f581518ac754046;hp=7b0a83bc0d1a27a998eb2a19522ade96cab38995;hb=48b997e125d13e5184281449feb9f4c8caf48e56;hpb=d016e24dd4686f613a17733b96bc28fac936a4ac diff --git a/birthday_confirm.php b/birthday_confirm.php index 7b0a83bc0d..7d4068456c 100644 --- a/birthday_confirm.php +++ b/birthday_confirm.php @@ -10,7 +10,12 @@ * -------------------------------------------------------------------- * * Kurzbeschreibung : Geburtstagsgutschrift bestaetigen * * -------------------------------------------------------------------- * - * * + * $Revision:: $ * + * $Date:: $ * + * $Tag:: 0.2.1-FINAL $ * + * $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 * * For more information visit: http://www.mxchange.org * @@ -31,30 +36,30 @@ * MA 02110-1301 USA * ************************************************************************/ -// Load security stuff here (Oh, I hope this is not unsecure? Am I paranoia??? ;-) ) -require("inc/libs/security_functions.php"); +// Load security stuff here +require('inc/libs/security_functions.php'); // Init "action" and "what" -$GLOBALS['what'] = ""; -$GLOBALS['action'] = ""; +$GLOBALS['what'] = ''; +$GLOBALS['action'] = ''; // Set module -$GLOBALS['module'] = "birthday_confirm"; +$GLOBALS['module'] = 'birthday_confirm'; $GLOBALS['output_mode'] = -1; // Load the required file(s) -require("inc/config.php"); +require('inc/config-global.php'); -// Is the "birthday" extension active? -REDIRECT_ON_UNINSTALLED_EXTENSION("birthday"); +// Is the 'birthday' extension active? +redirectOnUninstalledExtension('birthday'); // Is the script installed? -if (isBooleanConstantAndTrue('mxchange_installed')) { +if (isInstalled()) { // Script is installed so let's check for his confirmation link... - $uid = bigintval($_GET['uid']); + $uid = bigintval(REQUEST_GET('uid')); // Only allow numbers here... - $chk = bigintval($_GET['check'], false); + $chk = bigintval(REQUEST_GET('check'), false); // Check if link is not clicked so far $result = SQL_QUERY_ESC("SELECT b.points, d.gender, d.surname, d.family, d.status, d.ref_payout @@ -62,8 +67,11 @@ FROM `{!_MYSQL_PREFIX!}_user_birthday` AS b INNER JOIN `{!_MYSQL_PREFIX!}_user_data` AS d ON b.userid=d.userid WHERE b.userid=%s AND b.chk_value='%s' LIMIT 1", - array($uid, $chk), __FILE__, __LINE__); - //* DEBUG: */ echo "uid=".$uid.",chk=".$chk." (".strlen($chk)."/".strlen($_GET['check'])."/".SQL_NUMROWS($result).")
\n"; + array($uid, $chk), __FILE__, __LINE__); + //* DEBUG: */ echo "uid=".$uid.",chk=".$chk." (".strlen($chk).'/'.strlen(REQUEST_GET('check')).'/'.SQL_NUMROWS($result).")
\n"; + + // Prepare content + $content = array(); // Is an entry there? if (SQL_NUMROWS($result) == 1) { @@ -71,65 +79,67 @@ WHERE b.userid=%s AND b.chk_value='%s' LIMIT 1", $data = SQL_FETCHARRAY($result, false); // Is the account confirmed? - if ($data['status'] == "CONFIRMED") { + if ($data['status'] == 'CONFIRMED') { // Set mode depending on how many mails the member has to confirm $locked = false; - if (($data['ref_payout'] > 0) && (getConfig('allow_direct_pay') != "Y")) $locked = true; + if (($data['ref_payout'] > 0) && (getConfig('allow_direct_pay') != 'Y')) $locked = true; // Add points to account unset($GLOBALS['ref_level']); - ADD_POINTS_REFSYSTEM("birthday_confirm", $uid, $data['points'], false, "0", $locked, strtolower(getConfig('birthday_mode'))); + ADD_POINTS_REFSYSTEM('birthday_confirm', $uid, $data['points'], false, '0', $locked, strtolower(getConfig('birthday_mode'))); // Update mediadata if version is 0.0.4 or newer - if (GET_EXT_VERSION("mediadata") >= "0.0.4") { + if (GET_EXT_VERSION('mediadata') >= '0.0.4') { // Update database - MEDIA_UPDATE_ENTRY(array("total_points"), "add", $data['points']); + MEDIA_UPDATE_ENTRY(array('total_points'), 'add', $data['points']); } // Remove entry from table SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM `{!_MYSQL_PREFIX!}_user_birthday` WHERE userid=%s AND chk_value='%s' LIMIT 1", - array($uid, $chk), __FILE__, __LINE__); + array($uid, $chk), __FILE__, __LINE__); - // Transfer data to constants for the template - define('__GENDER', TRANSLATE_GENDER($data['gender'])); - define('__SNAME' , $data['surname']); - define('__FNAME' , $data['family']); - define('__GIFT' , TRANSLATE_COMMA($data['points'])); + // "Translate" some data + $data['gender'] = translateGender($data['gender']); + $data['points'] = translateComma($data['points']); // Load message from template - define('__MSG', LOAD_TEMPLATE("birthday_msg", true)); + $content['msg'] = LOAD_TEMPLATE('birthday_msg', true, $data); } else { // Unconfirmed / locked accounts cannot get points - define('__MSG', BIRTHDAY_CANNOT_STATUS_1.TRANSLATE_STATUS($data['status']).BIRTHDAY_CANNOT_STATUS_2); + $content['msg'] = sprintf(getMessage('BIRTHDAY_CANNOT_STATUS'), translateUserStatus($data['status'])); } } else { // Cannot load data! - define('__MSG', getMessage('BIRTHDAY_CANNOT_LOAD_DATA')); + $content['msg'] = getMessage('BIRTHDAY_CANNOT_LOAD_DATA'); } // Free memory SQL_FREERESULT($result); // Set this because we have no module in URI - $GLOBALS['module'] = "birthday_confirm"; + $GLOBALS['module'] = 'birthday_confirm'; // Include header - LOAD_INC("inc/header.php"); + loadIncludeOnce('inc/header.php'); // Load birthday header template (for your banners, e.g.?) - define('__BIRTHDAY_HEADER', LOAD_TEMPLATE("birthday_header", true)); + $content['header'] = LOAD_TEMPLATE('birthday_header', true); // Load birthday footer template (for your banners, e.g.?) - define('__BIRTHDAY_FOOTER', LOAD_TEMPLATE("birthday_footer", true)); + $content['footer'] = LOAD_TEMPLATE('birthday_footer', true); // Load final template and output it - LOAD_TEMPLATE("birthday_confirm"); + LOAD_TEMPLATE('birthday_confirm', false, $content); // Include footer - LOAD_INC("inc/footer.php"); + loadIncludeOnce('inc/footer.php'); } else { // You have to install first! - LOAD_URL("install.php"); + redirectToUrl('install.php'); } + // Really all done here... ;-) +shutdown(); + +// ?>