From 7fe908c50c8dbc5cc05f571dbe11d66141caacd4 Mon Sep 17 00:00:00 2001
From: Marius Cramer <m.cramer@pixcept.de>
Date: Thu, 14 Nov 2013 09:01:22 -0500
Subject: [PATCH] Cleaning up code to match coding guidelines

---
 interface/web/mail/user_quota_stats.php |   41 +++++++++++++++++++++--------------------
 1 files changed, 21 insertions(+), 20 deletions(-)

diff --git a/interface/web/mail/user_quota_stats.php b/interface/web/mail/user_quota_stats.php
index dfc1d8a..d491071 100644
--- a/interface/web/mail/user_quota_stats.php
+++ b/interface/web/mail/user_quota_stats.php
@@ -1,6 +1,6 @@
 <?php
-require_once('../../lib/config.inc.php');
-require_once('../../lib/app.inc.php');
+require_once '../../lib/config.inc.php';
+require_once '../../lib/app.inc.php';
 
 /******************************************
 * Begin Form configuration
@@ -35,44 +35,45 @@
 
 
 class list_action extends listform_actions {
-	
+
 	function prepareDataRow($rec)
-    {
-		global $app,$monitor_data;
-		
+	{
+		global $app, $monitor_data;
+
 		$rec = $app->listform->decode($rec);
 
 		//* Alternating datarow colors
 		$this->DataRowColor = ($this->DataRowColor == '#FFFFFF') ? '#EEEEEE' : '#FFFFFF';
 		$rec['bgcolor'] = $this->DataRowColor;
 		$email = $rec['email'];
-		
+
 		$rec['used'] = isset($monitor_data[$email]['used']) ? $monitor_data[$email]['used'] : array(1 => 0);
-		
+
 		if (!is_numeric($rec['used'])) $rec['used']=$rec['used'][1];
-		
+
 		if($rec['quota'] == 0){
 			$rec['quota'] = $app->lng('unlimited');
-            $rec['percentage'] = '';
-            $rec['percentage_sort'] = 0;
+			$rec['percentage'] = '';
+			$rec['percentage_sort'] = 0;
 		} else {
-            $rec['percentage'] = round(100 * $rec['used'] / $rec['quota']) . '%';
+			$rec['percentage'] = round(100 * $rec['used'] / $rec['quota']) . '%';
 			$rec['percentage_sort'] = round(100 * $rec['used'] / $rec['quota']);
-			$rec['quota'] = round($rec['quota'] / 1048576,4).' MB';
+			$rec['quota'] = round($rec['quota'] / 1048576, 4).' MB';
 		}
 
 
-        $rec['used_sort'] = $rec['used'];
-        if($rec['used'] < 1544000) {
-            $rec['used'] = round($rec['used'] / 1024,4).' KB';
-        } else {
-            $rec['used'] = round($rec['used'] / 1048576,4).' MB';
-        }
+		$rec['used_sort'] = $rec['used'];
+		if($rec['used'] < 1544000) {
+			$rec['used'] = round($rec['used'] / 1024, 4).' KB';
+		} else {
+			$rec['used'] = round($rec['used'] / 1048576, 4).' MB';
+		}
 
 		//* The variable "id" contains always the index variable
 		$rec['id'] = $rec[$this->idx_key];
 		return $rec;
 	}
+
 }
 
 $list = new list_action;
@@ -81,4 +82,4 @@
 $list->onLoad();
 
 
-?>
\ No newline at end of file
+?>

--
Gitblit v1.9.1