X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-list_links.php;h=252a22e156282d5469b9288d3b80831f7834d2dd;hp=5d7a1b02b50c6f977b1b4803f3b90eccadaa757e;hb=c5fcebd3d76023296ffc643be8736ac5a9c3dbb6;hpb=dbd1bc95c8f89024118791dc3fb3633a90afa9cf diff --git a/inc/modules/admin/what-list_links.php b/inc/modules/admin/what-list_links.php index 5d7a1b02b5..252a22e156 100644 --- a/inc/modules/admin/what-list_links.php +++ b/inc/modules/admin/what-list_links.php @@ -1,18 +1,22 @@ 0) { + // Do we have some entries? + if (!SQL_HASZERONUMS($result)) { // Some unconfirmed mails left - if ($_GET['del'] == "all") { + if (getRequestParameter('delete') == "all") { // Delete all unconfirmed mails by this user - $result_del = SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM "._MYSQL_PREFIX."_user_links WHERE userid=%d LIMIT %s", - array(bigintval($_GET['u_id']), $nums), __FILE__, __LINE__); + SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_user_links` WHERE `userid`=%s LIMIT %s", + array(bigintval(getRequestParameter('userid')), SQL_NUMROWS($result)), __FILE__, __LINE__); // Prepare mail and send it away - $msg = LOAD_EMAIL_TEMPLATE("admin-del_links", $nums, bigintval($_GET['u_id'])); - SEND_EMAIL($email, ADMIN_DEL_LINK_SUBJ, $msg); + $message = loadEmailTemplate('admin-del_links', SQL_NUMROWS($result), bigintval(getRequestParameter('userid'))); + sendEmail(getUserData('email'), '{--ADMIN_DELETE_LINK_SUBJECT--}', $message); // Display message - LOAD_TEMPLATE("admin_settings_saved", false, ADMIN_LINKS_DELETED); + displayMessage('{--ADMIN_LINKS_DELETED--}'); } else { + // Init variables + $OUT = ''; + // List all unconfirmed mails - $SW = 2; $OUT = ""; + // @TODO Find a way to rewrite this. See some lines above for different queries while (list($id, $id2, $type) = SQL_FETCHROW($result)) { - // Load data from stats table... - $cat = ""; - switch ($type) - { - case "NORMAL": - $result_data = SQL_QUERY_ESC("SELECT subject, timestamp_ordered, cat_id FROM "._MYSQL_PREFIX."_user_stats WHERE id=%d LIMIT 1", - array(bigintval($id)), __FILE__, __LINE__); - $type = "mailid"; $DATA = $id; $PROBLEM = NORMAL_MAIL_PROBLEM; - $LINK = "".$id.""; - break; - - case "BONUS": - $result_data = SQL_QUERY_ESC("SELECT subject, timestamp, cat_id FROM "._MYSQL_PREFIX."_bonus WHERE id=%d LIMIT 1", - array(bigintval($id2)), __FILE__, __LINE__); - $type = "bonusid"; $DATA = $id2; $PROBLEM = BONUS_MAIL_PROBLEM; - $LINK = "".$id2.""; - break; - } + // Initializes all variables + $cat = ''; + $DATA = ''; + $PROBLEM = '{--ADMIN_GENERAL_MAIL_PROBLEM--}'; + $result_data = false; + // Load data from stats table... + // @TODO Rewrite this to includes/filter + switch ($type) { + case 'NORMAL': + $result_data = SQL_QUERY_ESC("SELECT `subject`, `timestamp_ordered` AS `timestamp`, `cat_id` FROM `{?_MYSQL_PREFIX?}_user_stats` WHERE `id`=%s LIMIT 1", + array(bigintval($id)), __FILE__, __LINE__); + $type = 'mailid'; $DATA = $id; $PROBLEM = '{--NORMAL_MAIL_PROBLEM--}'; + $LINK = '' . $id . ''; + break; + + case 'BONUS': + $result_data = SQL_QUERY_ESC("SELECT `subject`, `timestamp`, `cat_id` FROM `{?_MYSQL_PREFIX?}_bonus` WHERE `id`=%s LIMIT 1", + array(bigintval($id2)), __FILE__, __LINE__); + $type = 'bonusid'; $DATA = $id2; $PROBLEM = '{--BONUS_MAIL_PROBLEM--}'; + $LINK = '' . $id2 . ''; + break; + + default: // Problem in application detected! + // Log the error + logDebugMessage(__FILE__, __LINE__, sprintf("Invalid email type %s detected.", $type)); + break; + } // END - switch + + // Do we have an entry? if (SQL_NUMROWS($result_data) == 1) { - // Mail was found! - list($subject, $timestamp, $cat) = SQL_FETCHROW($result_data); - SQL_FREERESULT($result_data); - if (empty($subject)) $subject = DEFAULT_SUBJECT_LINE; + // Mail was found + $content = SQL_FETCHARRAY($result_data); + + // Fix empty subject + if (empty($content['subject'])) $content['subject'] = '{--DEFAULT_SUBJECT_LINE--}'; // Prepare data for the row template $content = array( - 'sw' => $SW, - 'link' => $LINK, - 'subj' => $subject, - 'stamp' => MAKE_DATETIME($timestamp, "0"), - 'cat' => GET_CATEGORY($cat), + 'link' => $LINK, + 'subject' => $content['subject'], + 'timestamp' => generateDateTime($content['timestamp'], 0), + 'cat_id' => $content['cat_id'], ); // Load row template - $OUT .= LOAD_TEMPLATE("admin_list_links_row", true, $content); + $OUT .= loadTemplate('admin_list_links_row', true, $content); } else { // Load template for error - $OUT .= LOAD_TEMPLATE("admin_list_links_problem", + $OUT .= loadTemplate('admin_list_links_problem', true, array( - 'sw' => $SW, 'problem' => $PROBLEM, 'data' => $DATA ) ); } - $SW = 3 - $SW; - } - // Free memory - SQL_FREERESULT($result); + // Free result + SQL_FREERESULT($result_data); + } // END - while // Remember list in constant for the template - define('__SNAME_VALUE', $sname); - define('__FNAME_VALUE', $fname); - define('__EMAIL_VALUE', "".$email.""); - define('__EMAIL_LIST' , $OUT); - define('__NUMS_VALUE' , $nums); - define('__UID_VALUE' , $_GET['u_id']); + $content['surname'] = getUserData('surname'); + $content['family'] = getUserData('family'); + $content['email'] = '' . getUserData('email') . ''; + $content['rows'] = $OUT; + $content['nums'] = SQL_NUMROWS($result); + $content['userid'] = bigintval(getRequestParameter('userid')); + + // Free memory + SQL_FREERESULT($result); // Load final template - LOAD_TEMPLATE("admin_list_links"); + loadTemplate('admin_list_links', false, $content); } } else { // No mails left to confirm - LOAD_TEMPLATE("admin_settings_saved", false, ADMIN_MEMBER_LINKS_1.$_GET['u_id'].ADMIN_MEMBER_LINKS_2); + displayMessage(getMaskedMessage('ADMIN_MEMBER_LINKS', bigintval(getRequestParameter('userid')))); } } else { // User not found - LOAD_TEMPLATE("admin_settings_saved", false, ADMIN_MEMBER_404_1.$_GET['u_id'].ADMIN_MEMBER_404_2); + displayMessage(getMaskedMessage('ADMIN_MEMBER_404', bigintval(getRequestParameter('userid')))); } } else { // Output selection form with all confirmed user accounts listed - ADD_MEMBER_SELECTION_BOX(); + addMemberSelectionBox(); } -// +// [EOF] ?>