X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-list_sponsor.php;h=27c8cf75f3c2d274389d7f6b7fb8747f984dec11;hb=00790481119eefa7a54a8dda1cb191fdf4f29226;hp=a6e2d3cdecf7033150da3f199e7c0a37733eacc0;hpb=b8a6f8012aa3509d8e0f8fd078e044f20e80707a;p=mailer.git diff --git a/inc/modules/admin/what-list_sponsor.php b/inc/modules/admin/what-list_sponsor.php index a6e2d3cdec..27c8cf75f3 100644 --- a/inc/modules/admin/what-list_sponsor.php +++ b/inc/modules/admin/what-list_sponsor.php @@ -14,11 +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 * - * For more information visit: http://www.mxchange.org * + * Copyright (c) 2009 - 2012 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 * @@ -39,140 +38,135 @@ // Some security stuff... if ((!defined('__SECURITY')) || (!isAdmin())) { die(); -} +} // END - if // Add description as navigation point -addMenuDescription('admin', __FILE__); +addYouAreHereLink('admin', __FILE__); if (isGetRequestElementSet('id')) { // Show detailed informations to a sponsor - $result = SQL_QUERY_ESC("SELECT company, position, gender, surname, family, street_nr1, street_nr2, zip, city, country, phone, fax, cell, email, url, tax_ident, status, sponsor_created, last_online, last_change, receive_warnings, points_amount, points_used, remote_addr, warning_interval, refid, ref_count -FROM `{?_MYSQL_PREFIX?}_sponsor_data` -WHERE `id`='%s' LIMIT 1", + $result = SQL_QUERY_ESC("SELECT + `company`, `position`, `gender`, `surname`, `family`, `street_nr1`, `street_nr2`, `zip`, `city`, `country`, + `phone`, `fax`, `cell`, `email`, `url`, `tax_ident`, + `status`, + UNIX_TIMESTAMP(`sponsor_created`) AS `sponsor_created`, + UNIX_TIMESTAMP(`last_online`) AS `last_online`, + UNIX_TIMESTAMP(`last_change`) AS `last_change`, + `receive_warnings`, + `points_amount`, `points_used`, `remote_addr`, `warning_interval`, `refid`, `ref_count` +FROM + `{?_MYSQL_PREFIX?}_sponsor_data` +WHERE + `id`=%s LIMIT 1", array(bigintval(getRequestElement('id'))), __FILE__, __LINE__); if (SQL_NUMROWS($result) == 1) { // Load sponsor details $content = SQL_FETCHARRAY($result); - SQL_FREERESULT($result); // Check if an entry is empty foreach ($content as $k => $v) { - if (empty($v)) $content[$k] = '---'; - } - - // Check for sponsor's orders (only count) - $result_orders = SQL_QUERY_ESC("SELECT COUNT(id) FROM `{?_MYSQL_PREFIX?}_sponsor_orders` WHERE sponsorid='%s'", - array(bigintval(getRequestElement('id'))), __FILE__, __LINE__); - list($orders) = SQL_FETCHROW($result_orders); - SQL_FREERESULT($result_orders); - if (empty($orders)) $orders = '0'; + if ((empty($v)) && ($v != 0)) $content[$k] = '---'; + } // END - foreach // Prepare all data for the template // Sponsor's id - $content['id'] = getRequestElement('id'); - // Personal data - $content['gender'] = translateGender($content['gender']); + $content['id'] = getRequestElement('id'); // Contact data - $content['email_link'] = generateEmailLink($content['email'], 'sponsor_data'); - $content['url'] = generateDerefererUrl($content['url']); - // Timestamps - $content['created'] = generateDateTime($content['sponsor_created'], 2); - $content['last_online'] = generateDateTime($content['last_online'], 2); - $content['last_change'] = generateDateTime($content['last_change'], 2); - // Sponsor points - $content['points_amount'] = translateComma($content['points_amount']); - $content['points_used'] = translateComma($content['points_used']); - // Warning because low points - $content['receive_warnings'] = translateYesNo($content['receive_warnings']); - $content['warning_interval'] = createFancyTime($content['warning_interval']); + $content['email_link'] = generateEmailLink($content['email'], 'sponsor_data'); + // Epoche times + $content['sponsor_created'] = generateDateTime($content['sponsor_created'], 2); + $content['last_online'] = generateDateTime($content['last_online'], 2); + $content['last_change'] = generateDateTime($content['last_change'], 2); // Orders total - $content['orders'] = $orders; - // Other data - $content['status'] = sponsorTranslateUserStatus($content['status']); + $content['orders'] = countSumTotalData(bigintval(getRequestElement('id')), 'sponsor_orders', 'id', 'sponsor_id', TRUE); // Load template - loadTemplate('admin_list_sponsor_details', false, $content); + loadTemplate('admin_list_sponsor_details', FALSE, $content); } else { // Sponsor not found - loadTemplate('admin_settings_saved', false, sprintf(getMessage('ADMIN_SPONSOR_404'), getRequestElement('id'))); + displayMessage('{%message,ADMIN_SPONSOR_404=' . bigintval(getRequestElement('id')) . '%}'); } -} elseif (isGetRequestElementSet('rid')) { + + // Free result + SQL_FREERESULT($result); +} elseif (isGetRequestElementSet('refid')) { // Search for sponsor - $result = SQL_QUERY_ESC("SELECT `id` FROM `{?_MYSQL_PREFIX?}_sponsor_data` WHERE `id`='%s' LIMIT 1", - array(bigintval(getRequestElement('rid'))), __FILE__, __LINE__); + $result = SQL_QUERY_ESC("SELECT `id` FROM `{?_MYSQL_PREFIX?}_sponsor_data` WHERE `id`=%s LIMIT 1", + array(bigintval(getRequestElement('refid'))), __FILE__, __LINE__); if (SQL_NUMROWS($result) == 1) { // Free memory SQL_FREERESULT($result); - // Sponsor found so let's list all his referals + // Sponsor found so let's list all his referrals $result = SQL_QUERY_ESC("SELECT - `id`, `gender`, `surname`, `family`, `email`, `status`, - `sponsor_created`, `last_online`, `points_amount`, `points_used`, - `remote_addr`, `ref_count` + `id`, + `gender`, + `surname`, + `family`, + `email`, + `status`, + UNIX_TIMESTAMP(`sponsor_created`) AS `sponsor_created`, + UNIX_TIMESTAMP(`last_online`) AS `last_online`, + `points_amount`, + `points_used`, + `remote_addr`, + `ref_count` FROM `{?_MYSQL_PREFIX?}_sponsor_data` WHERE `refid`='%s' ORDER BY `id` ASC", - array(bigintval(getRequestElement('rid'))), __FILE__, __LINE__); + array(bigintval(getRequestElement('refid'))), __FILE__, __LINE__); - if (SQL_NUMROWS($result) > 0) { + if (!SQL_HASZERONUMS($result)) { // List refs now // Free memory SQL_FREERESULT($result); } else { // No refs made so far - loadTemplate('admin_settings_saved', false, sprintf(getMessage('ADMIN_SPONSOR_REFS_404'), "" . bigintval(getRequestElement('rid')) . "")); + displayMessage(getMaskedMessage('ADMIN_SPONSOR_REFS_404', '' . bigintval(getRequestElement('refid')) . '')); } } else { // Sponsor not found - loadTemplate('admin_settings_saved', false, sprintf(getMessage('ADMIN_SPONSOR_404'), bigintval(getRequestElement('rid')))); + displayMessage('{%message,ADMIN_SPONSOR_404=' . bigintval(getRequestElement('refid')) . '%}'); } } else { // List all sponsors $result_main = SQL_QUERY("SELECT `id`, `gender`, `surname`, `family`, `email`, `status`, - `sponsor_created`, `last_online`, `points_amount`, `points_used`, `remote_addr` + UNIX_TIMESTAMP(`sponsor_created`) AS `sponsor_created`, + UNIX_TIMESTAMP(`last_online`) AS `last_online`, + `points_amount`, `points_used`, + (`points_amount` + `points_used`) AS `points`, + `remote_addr` FROM `{?_MYSQL_PREFIX?}_sponsor_data` ORDER BY `id` ASC", __FILE__, __LINE__); - if (SQL_NUMROWS($result_main) > 0) { - // At least one sponsor found! - $OUT = ''; $SW = 2; + if (!SQL_HASZERONUMS($result_main)) { + // At least one sponsor found + $OUT = ''; while ($content = SQL_FETCHARRAY($result_main)) { // Transfer data to array - // @TODO Rewritings: surname->surname,family->family,ip->remote_addr in template - $content = array( - 'id' => $content['id'], - 'sw' => $SW, - 'gender' => translateGender($content['gender']), - 'surname' => $content['surname'], - 'family' => $content['family'], - 'email' => generateEmailLink($content['email'], 'sponsor_data'), - 'status' => sponsorTranslateUserStatus($content['status']), - 'created' => generateDateTime($content['sponsor_created'], 2), - 'last_online' => generateDateTime($content['last_online'], 2), - 'points' => translateComma($content['points_amount'] - $content['points_used']), - 'ip' => $content['remote_addr'], - ); + $content['email'] = generateEmailLink($content['email'], 'sponsor_data'); + $content['sponsor_created'] = generateDateTime($content['sponsor_created'], 2); + $content['last_online'] = generateDateTime($content['last_online'], 2); // Load row template - $OUT .= loadTemplate('admin_list_sponsor_row', true, $content); - $SW = 3 - $SW; - } + $OUT .= loadTemplate('admin_list_sponsor_row', TRUE, $content); + } // END - while // Free memory SQL_FREERESULT($result_main); // Load final template - loadTemplate('admin_list_sponsor', false, $OUT); + loadTemplate('admin_list_sponsor', FALSE, $OUT); } else { // No sponsors registered so far - loadTemplate('admin_settings_saved', false, getMessage('ADMIN_SPONSOR_NONE_REGISTERED')); + displayMessage('{--ADMIN_SPONSOR_NONE_REGISTERED--}'); } }