X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-list_links.php;h=5a0a6afac2ad38757b08605d93e3c93868ecb25f;hp=12058cc1027b7a5387e2c1ba72568e9a4b724f33;hb=d3c4fdd9bfab35389e1a5ff48f3952d527c7b4bb;hpb=49248176a5638be80b148ef55d0dc8c334522bf3 diff --git a/inc/modules/admin/what-list_links.php b/inc/modules/admin/what-list_links.php index 12058cc102..5a0a6afac2 100644 --- a/inc/modules/admin/what-list_links.php +++ b/inc/modules/admin/what-list_links.php @@ -8,7 +8,7 @@ * -------------------------------------------------------------------- * * Short description : List unconfirmed mails of a member * * -------------------------------------------------------------------- * - * Kurzbeschreibung : Unbestaetigte Mails eines Mitgliedes auflisten * + * Kurzbeschreibung : Unbestätigte Mails eines Mitgliedes auflisten * * -------------------------------------------------------------------- * * $Revision:: $ * * $Date:: $ * @@ -17,7 +17,7 @@ * 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 * + * Copyright (c) 2003 - 2009 by Roland Haeder * * For more information visit: http://www.mxchange.org * * * * This program is free software; you can redistribute it and/or modify * @@ -37,39 +37,38 @@ ************************************************************************/ // Some security stuff... -if ((!defined('__SECURITY')) || (!IS_ADMIN())) { - $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), '/inc') + 4) . '/security.php'; - require($INC); -} elseif (!EXT_IS_ACTIVE('mailid')) { - addFatalMessage(__FILE__, __LINE__, generateExtensionInactiveNotInstalledMessage('mailid')); - return; -} +if ((!defined('__SECURITY')) || (!isAdmin())) { + die(); +} // END - if // Add description as navigation point -ADD_DESCR('admin', __FILE__); +addMenuDescription('admin', __FILE__); -if (!REQUEST_ISSET_GET('del')) REQUEST_SET_GET('del', ''); +if (!isExtensionActive('mailid')) { + loadTemplate('admin_settings_saved', false, generateExtensionInactiveNotInstalledMessage('mailid')); + return; +} // END - if -if (REQUEST_ISSET_GET('uid')) { +if (isGetRequestElementSet('userid')) { // Check if the user already exists - $result = SQL_QUERY_ESC("SELECT surname, family, email FROM `{!_MYSQL_PREFIX!}_user_data` WHERE userid=%s LIMIT 1", - array(bigintval(REQUEST_GET('uid'))), __FILE__, __LINE__); + $result = SQL_QUERY_ESC("SELECT surname, family, email FROM `{?_MYSQL_PREFIX?}_user_data` WHERE `userid`=%s LIMIT 1", + array(bigintval(getRequestElement('userid'))), __FILE__, __LINE__); // Is there an entry? if (SQL_NUMROWS($result) == 1) { // Loads surname, family's name and the email address - list($sname, $fname, $email) = SQL_FETCHROW($result); + list($surname, $family, $email) = SQL_FETCHROW($result); SQL_FREERESULT($result); // Grab user's all unconfirmed mails - if (EXT_IS_ACTIVE('bonus')) { - // Load bonus ID - $result = SQL_QUERY_ESC("SELECT stats_id, bonus_id, link_type FROM `{!_MYSQL_PREFIX!}_user_links` WHERE userid=%s ORDER BY `id`", - array(bigintval(REQUEST_GET('uid'))), __FILE__, __LINE__); + if (isExtensionActive('bonus')) { + // Load bonus id + $result = SQL_QUERY_ESC("SELECT stats_id, bonus_id, link_type FROM `{?_MYSQL_PREFIX?}_user_links` WHERE `userid`=%s ORDER BY `id`", + array(bigintval(getRequestElement('userid'))), __FILE__, __LINE__); } else { - // Load stats ID (2nd will be ignored later! But it is needed for the same fetchrow command) - $result = SQL_QUERY_ESC("SELECT stats_id, stats_id, link_type FROM `{!_MYSQL_PREFIX!}_user_links` WHERE userid=%s ORDER BY `id`", - array(bigintval(REQUEST_GET('uid'))), __FILE__, __LINE__); + // Load stats id (2nd will be ignored later! But it is needed for the same fetchrow command) + $result = SQL_QUERY_ESC("SELECT stats_id, stats_id, link_type FROM `{?_MYSQL_PREFIX?}_user_links` WHERE `userid`=%s ORDER BY `id` ASC", + array(bigintval(getRequestElement('userid'))), __FILE__, __LINE__); } // Get number of rows from the query @@ -77,17 +76,17 @@ if (REQUEST_ISSET_GET('uid')) { if ($nums > 0) { // Some unconfirmed mails left - if (REQUEST_GET('del') == "all") { + if (getRequestElement('del') == "all") { // Delete all unconfirmed mails by this user - SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM `{!_MYSQL_PREFIX!}_user_links` WHERE userid=%s LIMIT %s", - array(bigintval(REQUEST_GET('uid')), $nums), __FILE__, __LINE__); + SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_user_links` WHERE `userid`=%s LIMIT %s", + array(bigintval(getRequestElement('userid')), $nums), __FILE__, __LINE__); // Prepare mail and send it away - $msg = LOAD_EMAIL_TEMPLATE("admin-del_links", $nums, bigintval(REQUEST_GET('uid'))); - sendEmail($email, getMessage('ADMIN_DEL_LINK_SUBJ'), $msg); + $message = loadEmailTemplate('admin-del_links', $nums, bigintval(getRequestElement('userid'))); + sendEmail($email, getMessage('ADMIN_DEL_LINK_SUBJ'), $message); // Display message - LOAD_TEMPLATE('admin_settings_saved', false, getMessage('ADMIN_LINKS_DELETED')); + loadTemplate('admin_settings_saved', false, getMessage('ADMIN_LINKS_DELETED')); } else { // Init variables $OUT = ''; $SW = 2; @@ -105,22 +104,22 @@ if (REQUEST_ISSET_GET('uid')) { // @TODO Rewrite this to includes/filter switch ($type) { case 'NORMAL': - $result_data = SQL_QUERY_ESC("SELECT subject, timestamp_ordered, cat_id FROM `{!_MYSQL_PREFIX!}_user_stats` WHERE `id`=%s LIMIT 1", - array(bigintval($id)), __FILE__, __LINE__); + $result_data = SQL_QUERY_ESC("SELECT `subject`, `timestamp_ordered`, `cat_id` FROM `{?_MYSQL_PREFIX?}_user_stats` WHERE `id`=%s LIMIT 1", + array(bigintval($id)), __FILE__, __LINE__); $type = 'mailid'; $DATA = $id; $PROBLEM = getMessage('NORMAL_MAIL_PROBLEM'); - $LINK = "".$id.""; + $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__); + $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 = getMessage('BONUS_MAIL_PROBLEM'); - $LINK = "".$id2.""; + $LINK = "".$id2.""; break; default: // Problem in application detected! // Log the error - DEBUG_LOG(__FILE__, __LINE__, sprintf("Invalid email type %s detected.", $type)); + logDebugMessage(__FILE__, __LINE__, sprintf("Invalid email type %s detected.", $type)); break; } @@ -132,18 +131,18 @@ if (REQUEST_ISSET_GET('uid')) { // Prepare data for the row template $content = array( - 'sw' => $SW, - 'link' => $LINK, - 'subj' => $subject, - 'stamp' => generateDateTime($timestamp, '0'), - 'cat' => getCategory($cat), + 'sw' => $SW, + 'link' => $LINK, + 'subject' => $subject, + 'stamp' => generateDateTime($timestamp, 0), + 'cat' => getCategory($cat), ); // 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', array( 'sw' => $SW, 'problem' => $PROBLEM, @@ -158,28 +157,28 @@ if (REQUEST_ISSET_GET('uid')) { SQL_FREERESULT($result); // 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' , bigintval(REQUEST_GET('uid'))); + $content['surname'] = $surname; + $content['family'] = $family; + $content['email'] = "".$email.""; + $content['rows'] = $OUT; + $content['nums'] = $nums; + $content['userid'] = bigintval(getRequestElement('userid')); // 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, sprintf(getMessage('ADMIN_MEMBER_LINKS'), REQUEST_GET('uid'))); + loadTemplate('admin_settings_saved', false, sprintf(getMessage('ADMIN_MEMBER_LINKS'), getRequestElement('userid'))); } } else { // User not found - LOAD_TEMPLATE('admin_settings_saved', false, sprintf(getMessage('ADMIN_MEMBER_404'), REQUEST_GET('uid'))); + loadTemplate('admin_settings_saved', false, sprintf(getMessage('ADMIN_MEMBER_404'), getRequestElement('userid'))); } } else { // Output selection form with all confirmed user accounts listed - ADD_MEMBER_SELECTION_BOX(); + addMemberSelectionBox(); } -// +// [EOF] ?>