X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Fmodules%2Forder.php;h=5dcc041bdedd028d3198b42a855a52d542630e1f;hp=133ab4c8aedffcd4ac0289808d792cbc729d5c80;hb=f928ad2bed60fa256d0641eaf6d2c027a2944688;hpb=f03cb5d87e69bb2efc885b5c5f5f3026b24c06f6 diff --git a/inc/modules/order.php b/inc/modules/order.php index 133ab4c8ae..5dcc041bde 100644 --- a/inc/modules/order.php +++ b/inc/modules/order.php @@ -37,90 +37,80 @@ ************************************************************************/ // Some security stuff... -$URL = ""; +$URL = ''; if (!defined('__SECURITY')) { - $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php"; + $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), '/inc') + 4) . '/security.php'; require($INC); -} elseif ((!EXT_IS_ACTIVE("order")) && (!IS_ADMIN())) { - addFatalMessage(__FILE__, __LINE__, getMessage('EXTENSION_PROBLEM_EXT_INACTIVE'), "order"); +} elseif ((!EXT_IS_ACTIVE('order')) && (!IS_ADMIN())) { + addFatalMessage(__FILE__, __LINE__, generateExtensionInactiveNotInstalledMessage('order')); return; } elseif (!IS_MEMBER()) { // Sorry, no guest access! - $URL = "modules.php?module=index"; -} elseif (!REQUEST_ISSET_GET(('order'))) { + $URL = 'modules.php?module=index'; +} elseif (!REQUEST_ISSET_GET('order')) { // You cannot call this module directly! - $URL = "modules.php?module=login&what=order"; + $URL = 'modules.php?module=login&what=order'; } // When URL is empty nothing bad happend here if (empty($URL)) { // Is the auto-send mechanism active or inactive? - if (getConfig('autosend_active') == "Y") { + if (getConfig('autosend_active') == 'Y') { // Auto-send is active define('ADMIN_AUTOSEND', getMessage('ADMIN_AUTOSEND_ACTIVE')); define('MEMBER_AUTOSEND', getMessage('MEMBER_AUTOSEND_ACTIVE')); - $type = "NEW"; + $type = 'NEW'; } else { // Auto-send is inactive define('ADMIN_AUTOSEND', getMessage('ADMIN_AUTOSEND_INACTIVE')); define('MEMBER_AUTOSEND', getMessage('MEMBER_AUTOSEND_INACTIVE')); - $type = "ADMIN"; + $type = 'ADMIN'; } // Update sending pool - SQL_QUERY_ESC("UPDATE `{!_MYSQL_PREFIX!}_pool` SET data_type='%s' WHERE id=%s AND sender=%s AND data_type='TEMP' LIMIT 1", + SQL_QUERY_ESC("UPDATE `{!_MYSQL_PREFIX!}_pool` SET `data_type`='%s' WHERE `id`=%s AND `sender`=%s AND `data_type`='TEMP' LIMIT 1", array($type, bigintval(REQUEST_GET('order')), getUserId()), __FILE__, __LINE__); // Finally is the entry valid? if (SQL_AFFECTEDROWS() == 1) { - // Load personal data... - $result = SQL_QUERY_ESC("SELECT gender, surname, family, email FROM `{!_MYSQL_PREFIX!}_user_data` WHERE userid=%s LIMIT 1", - array(getUserId()), __FILE__, __LINE__); - list($gender, $sname, $fname, $email) = SQL_FETCHROW($result); - SQL_FREERESULT($result); - - // Load mail again... 0 1 2 3 4 5 6 7 - $result = SQL_QUERY_ESC("SELECT subject, text, receivers, payment_id, timestamp, url, cat_id, target_send FROM `{!_MYSQL_PREFIX!}_pool` WHERE id=%s AND sender=%s LIMIT 1", + // @TODO Unused: 2,4 + // Load mail again... 0 1 2 3 4 5 6 7 + $result = SQL_QUERY_ESC("SELECT `subject`, `text`, `receivers`, `payment_id`, `timestamp`, `url`, cat_id`, `target_send` FROM `{!_MYSQL_PREFIX!}_pool` WHERE `id`=%s AND `sender`=%s LIMIT 1", array(bigintval(REQUEST_GET('order')), getUserId()), __FILE__, __LINE__); - $DATA = SQL_FETCHROW($result); + $content = SQL_FETCHARRAY($result); SQL_FREERESULT($result); - if (empty($DATA[0])) $DATA[0] = getMessage('DEFAULT_SUBJECT_LINE'); + if (empty($content['subject'])) $content['subject'] = getMessage('DEFAULT_SUBJECT_LINE'); // Calculate used points - $USED = $DATA[7] * GET_PAY_POINTS($DATA[3]); + $USED = $content['target_send'] * getPaymentPoints($content['payment_id']); // Update used points - $add = ""; - if (getConfig('order_max_full') == "ORDER") $add = ", mail_orders=mail_orders+1"; - SUB_POINTS("order", getUserId(), $USED); + $add = ''; + if (getConfig('order_max_full') == 'ORDER') $add = ', mail_orders=mail_orders+1'; + SUB_POINTS('order', getUserId(), $USED); - // Prepare content - $content = array( - 'blocks' => getConfig('max_send'), - 'subject' => $DATA[0], - 'text' => $DATA[1], - 'payment' => GET_PAYMENT($DATA[3]), - 'category' => GET_CATEGORY($DATA[6]), - 'url' => $DATA[5] - ); + // Compile content + $content['block'] = getConfig('max_send'); + $content['payment'] = getPaymentTitlePrice($content['payment_id']); + $content['category'] = getCategory($content['cat_id']); // Send an email to the user - $msg_mem = LOAD_EMAIL_TEMPLATE("order-member", $content, getUserId()); - SEND_EMAIL($email, getMessage('MEMBER_NEW_QUEUE'), $msg_mem); + $message_mem = LOAD_EMAIL_TEMPLATE('order-member', $content, getUserId()); + sendEmail(getUserId(), getMessage('MEMBER_NEW_QUEUE'), $message_mem); // Notify admins about this - SEND_ADMIN_NOTIFICATION(getMessage('ADMIN_NEW_QUEUE'), "order-admin", $content, getUserId()); + sendAdminNotification(getMessage('ADMIN_NEW_QUEUE'), 'order-admin', $content, getUserId()); // Output back bottom - LOAD_TEMPLATE("member_order-back", false); + LOAD_TEMPLATE('member_order-back', false); } else { - // Matching line not found or already "placed" in send queue - LOAD_URL("modules.php?module=login"); + // Matching line not found or already 'placed' in send queue + redirectToUrl('modules.php?module=login'); } } else { // Redirect... - LOAD_URL($URL); + redirectToUrl($URL); } -// +// [EOF] ?>