From 3fc28c0142bf8ab4e2cfae44931e2a51aadc4d51 Mon Sep 17 00:00:00 2001
From: mcramer <m.cramer@pixcept.de>
Date: Mon, 25 Feb 2013 13:51:37 -0500
Subject: [PATCH] - Added: remoting queries with a lot of results (e.g. email addresses or alias domains or dns rr) lead to non-functioning soap requests   - added '#OFFSET#' AND '#LIMIT#' handling to the query   - added automatic 'WHERE 1' if an empty array was given as query   example: $result = $api->sites_web_domain_get('type' => 'vhost', '#OFFSET#' => 25, '#LIMIT#' => 50); to get the websites 26 to 75

---
 interface/web/sites/web_sites_stats.php |   26 ++++++++++++++++++++++++++
 1 files changed, 26 insertions(+), 0 deletions(-)

diff --git a/interface/web/sites/web_sites_stats.php b/interface/web/sites/web_sites_stats.php
index b9533e8..3a01069 100644
--- a/interface/web/sites/web_sites_stats.php
+++ b/interface/web/sites/web_sites_stats.php
@@ -19,6 +19,11 @@
 
 class list_action extends listform_actions {
 	
+	private $sum_this_month = 0;
+	private $sum_this_year = 0;
+	private $sum_last_month = 0;
+	private $sum_last_year = 0;
+	
 	function prepareDataRow($rec)
     {
 		global $app;
@@ -35,29 +40,50 @@
         $tmp_month = date('m');
 		$tmp_rec = $app->db->queryOneRecord("SELECT SUM(traffic_bytes) as t FROM web_traffic WHERE hostname = '".$rec['domain']."' AND YEAR(traffic_date) = '$tmp_year' AND MONTH(traffic_date) = '$tmp_month'");
 		$rec['this_month'] = number_format($tmp_rec['t']/1024/1024, 0, '.', ' ');
+		$this->sum_this_month += ($tmp_rec['t']/1024/1024);
 		
 		//** Traffic of the current year
 		$tmp_rec = $app->db->queryOneRecord("SELECT sum(traffic_bytes) as t FROM web_traffic WHERE hostname = '".$rec['domain']."' AND YEAR(traffic_date) = '$tmp_year'");
 		$rec['this_year'] = number_format($tmp_rec['t']/1024/1024, 0, '.', ' ');
+		$this->sum_this_year += ($tmp_rec['t']/1024/1024);
 		
 		//** Traffic of the last month
         $tmp_year = date('Y',mktime(0, 0, 0, date("m")-1, date("d"), date("Y")));
         $tmp_month = date('m',mktime(0, 0, 0, date("m")-1, date("d"), date("Y")));
 		$tmp_rec = $app->db->queryOneRecord("SELECT sum(traffic_bytes) as t FROM web_traffic WHERE hostname = '".$rec['domain']."' AND YEAR(traffic_date) = '$tmp_year' AND MONTH(traffic_date) = '$tmp_month'");
 		$rec['last_month'] = number_format($tmp_rec['t']/1024/1024, 0, '.', ' ');
+		$this->sum_last_month += ($tmp_rec['t']/1024/1024);
 		
 		//** Traffic of the last year
 		$tmp_year = date('Y',mktime(0, 0, 0, date("m"), date("d"), date("Y")-1));
 		$tmp_rec = $app->db->queryOneRecord("SELECT sum(traffic_bytes) as t FROM web_traffic WHERE hostname = '".$rec['domain']."' AND YEAR(traffic_date) = '$tmp_year'");
 		$rec['last_year'] = number_format($tmp_rec['t']/1024/1024, 0, '.', ' ');
+		$this->sum_last_year += ($tmp_rec['t']/1024/1024);
 		
 		//* The variable "id" contains always the index variable
 		$rec['id'] = $rec[$this->idx_key];
+		
 		return $rec;
+	}
+	
+	function onShowEnd()
+    {
+		global $app;
+		
+		$app->tpl->setVar('sum_this_month',number_format($app->functions->intval($this->sum_this_month), 0, '.', ' '));
+		$app->tpl->setVar('sum_this_year',number_format($app->functions->intval($this->sum_this_year), 0, '.', ' '));
+		$app->tpl->setVar('sum_last_month',number_format($app->functions->intval($this->sum_last_month), 0, '.', ' '));
+		$app->tpl->setVar('sum_last_year',number_format($app->functions->intval($this->sum_last_year), 0, '.', ' '));
+		$app->tpl->setVar('sum_txt',$app->listform->lng('sum_txt'));
+		
+		$app->tpl_defaults();
+		$app->tpl->pparse();
 	}
 }
 
 $list = new list_action;
+$list->SQLExtWhere = "(type = 'vhost' or type = 'vhostsubdomain')";
+$list->SQLOrderBy = 'ORDER BY domain';
 $list->onLoad();
 
 

--
Gitblit v1.9.1