X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;ds=sidebyside;f=inc%2Fmodules%2Fadmin%2Fwhat-list_notifications.php;h=40e4f6fd8244b50a36c6ca0c1675b6efcd06dc32;hb=49acdb7a7adbcf25a8e8683b5581bfcec72b23bd;hp=c337999dbb34aa3be46bb58a87e2c6cfea953e45;hpb=0715fa7aa8e5e70bcf1d957fb09ae655c3896c4e;p=mailer.git diff --git a/inc/modules/admin/what-list_notifications.php b/inc/modules/admin/what-list_notifications.php index c337999dbb..40e4f6fd82 100644 --- a/inc/modules/admin/what-list_notifications.php +++ b/inc/modules/admin/what-list_notifications.php @@ -14,12 +14,10 @@ * $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 - 2009 by Roland Haeder * - * Copyright (c) 2009, 2010 by Mailer Developer Team * - * For more information visit: http://www.mxchange.org * + * Copyright (c) 2009 - 2015 by Mailer Developer Team * + * For more information visit: http://mxchange.org * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * @@ -43,84 +41,75 @@ if ((!defined('__SECURITY')) || (!isAdmin())) { } // END - if // Add description as navigation point -addMenuDescription('admin', __FILE__); +addYouAreHereLink('admin', __FILE__); // Init variables $SQL2 = ''; -$result_max = false; +$result_max = FALSE; // Set offset an current page to default values -if (!isGetRequestParameterSet('page')) setGetRequestParameter('page' , 1); -if (!isGetRequestParameterSet('offset')) setGetRequestParameter('offset', getConfig('mails_page')); +if (!isGetRequestElementSet('page')) setGetRequestElement('page' , 1); +if (!isGetRequestElementSet('offset')) setGetRequestElement('offset', getMailsPage()); if (isExtensionActive('bonus')) { // Bonus mails sent by you - // 0 1 2 3 4 5 6 7 8 9 10 11 12 - $SQL2 = "SELECT id, subject, text, receivers, points, time, data_type, timestamp, url, cat_id, target_send, mails_sent, clicks -FROM `{?_MYSQL_PREFIX?}_bonus` -WHERE is_notify='Y' -ORDER BY timestamp DESC"; + $SQL2 = "SELECT + `id`, `subject`, `text`, `receivers`, `points`, `time`, `data_type`, `timestamp`, `url`, `cat_id`, `target_send`, + `mails_sent`, `clicks`, (`mails_sent` - `clicks`) AS `unconfirmed` +FROM + `{?_MYSQL_PREFIX?}_bonus` +WHERE + `is_notify`='Y' +ORDER BY + `timestamp` DESC"; // Check for maximum pages - $result_max = SQL_QUERY($SQL2, __FILE__, __LINE__); + $result_max = sqlQuery($SQL2, __FILE__, __LINE__); } else { // Bonus extension required! - loadTemplate('admin_settings_saved', false, getMaskedMessage('ADMIN_EXTENSION_PROBLEM_EXTENSION_NOT_INSTALLED', 'bonus')); + displayMessage('{%pipe,generateExtensionInactiveNotInstalledMessage=bonus%}'); } // Create limitation line -$add = " LIMIT ".(bigintval(getRequestParameter('offset')) * bigintval(getRequestParameter('page')) - bigintval(getRequestParameter('offset'))).", ".bigintval(getRequestParameter('offset')); +$add = ' LIMIT ' . (bigintval(getRequestElement('offset')) * bigintval(getRequestElement('page')) - bigintval(getRequestElement('offset'))) . ', ' . bigintval(getRequestElement('offset')); // Add limitation if (!empty($SQL2)) $SQL2 .= $add; -if ((isExtensionActive('bonus')) && (SQL_NUMROWS($result_max) > 0) && (!empty($SQL2))) { +if ((isExtensionActive('bonus')) && (!ifSqlHasZeroNumRows($result_max)) && (!empty($SQL2))) { // Run SQL query for notification mails - $result_bonus = SQL_QUERY($SQL2, __FILE__, __LINE__); + $result_bonus = sqlQuery($SQL2, __FILE__, __LINE__); // Load bonus mails only when extension is active - if (SQL_NUMROWS($result_bonus) > 0) { + if (!ifSqlHasZeroNumRows($result_bonus)) { // Calculate pages - $PAGES = round(SQL_NUMROWS($result_bonus) / getConfig('mails_page') + 0.5); + $numPages = round(sqlNumRows($result_bonus) / getMailsPage() + 0.5); // List emails $OUT = ''; $content = array(); - while ($bonus = SQL_FETCHARRAY($result_bonus)) { - // Calculate unconfirmed emails - $bonus['unconfirmed'] = $bonus['mails_sent'] - $bonus['clicks']; - - // Add link? - if ($bonus['unconfirmed'] > 0) { - // Add link to list_unconfirmed what-file - $bonus['unconfirmed'] = "" . $bonus['unconfirmed'] . ""; - } // END - if + while ($content = sqlFetchArray($result_bonus)) { + // Add "unconfirmed-link" + $content['unconfirmed_content'] = generateUnconfirmedAdminLink($content['id'], $content['unconfirmed'], 'bonus'); // Prepare content - $content = $bonus; - $content['time'] = createFancyTime($content['time']); - $content['category'] = getCategory($content['cat_id']); - $content['receivers'] = convertReceivers($content['receivers']); - $content['type'] = translatePoolType($content['data_type']); - $content['frametester'] = generateFrametesterUrl($content['url']); $content['timestamp'] = generateDateTime($content['timestamp'], 0); // Load row template - $OUT .= loadTemplate('admin_list_notify_emails_row', true, $content); - } + $OUT .= loadTemplate('admin_list_notify_emails_row', TRUE, $content); + } // END - if // Add navigation (without change box but with colspan=3) - $content['nav'] = ''; - if ($PAGES > 1) $content['nav'] = addEmailNavigation($PAGES, getConfig('mails_page'), false, 3, true); + $content['nav'] = addEmailNavigation($numPages, getMailsPage(), FALSE, 3, TRUE); // Prepare content $content['rows'] = $OUT; // Load main template - loadTemplate('admin_list_notify_emails', false, $content); + loadTemplate('admin_list_notify_emails', FALSE, $content); } -} elseif ((SQL_NUMROWS($result_max) === 0) && (is_resource($result_max))) { +} elseif ((sqlNumRows($result_max) === 0) && (is_resource($result_max))) { // No notifications found - loadTemplate('admin_settings_saved', false, getMessage('ADMIN_NO_NOTIFICATIONS')); + displayMessage('{--ADMIN_NO_NOTIFICATIONS--}'); } // [EOF]