@@ -17,7 +17,7 @@ discard block |
||
17 | 17 | |
18 | 18 | function displayPqp($output, $config) { |
19 | 19 | |
20 | -$css = file_get_contents(__DIR__ . '/css/pQp.css'); |
|
20 | +$css = file_get_contents(__DIR__.'/css/pQp.css'); |
|
21 | 21 | |
22 | 22 | echo <<<JAVASCRIPT |
23 | 23 | <!-- JavaScript --> |
@@ -161,7 +161,7 @@ discard block |
||
161 | 161 | |
162 | 162 | echo '<div id="pqp-console" class="pqp-box">'; |
163 | 163 | |
164 | -if($logCount == 0) { |
|
164 | +if ($logCount == 0) { |
|
165 | 165 | echo '<h3>This panel has no log items.</h3>'; |
166 | 166 | } |
167 | 167 | else { |
@@ -178,25 +178,25 @@ discard block |
||
178 | 178 | <table class="main" cellspacing="0">'; |
179 | 179 | |
180 | 180 | $class = ''; |
181 | - foreach($output['logs']['console'] as $log) { |
|
181 | + foreach ($output['logs']['console'] as $log) { |
|
182 | 182 | echo '<tr class="log-'.$log['type'].'"> |
183 | 183 | <td class="type">'.$log['type'].'</td> |
184 | 184 | <td class="'.$class.'">'; |
185 | - if($log['type'] == 'log') { |
|
185 | + if ($log['type'] == 'log') { |
|
186 | 186 | echo '<div><pre>'.$log['data'].'</pre></div>'; |
187 | 187 | } |
188 | - elseif($log['type'] == 'memory') { |
|
188 | + elseif ($log['type'] == 'memory') { |
|
189 | 189 | echo '<div><pre>'.$log['data'].'</pre> <em>'.$log['dataType'].'</em>: '.$log['name'].' </div>'; |
190 | 190 | } |
191 | - elseif($log['type'] == 'speed') { |
|
191 | + elseif ($log['type'] == 'speed') { |
|
192 | 192 | echo '<div><pre>'.$log['data'].'</pre> <em>'.$log['name'].'</em></div>'; |
193 | 193 | } |
194 | - elseif($log['type'] == 'error') { |
|
194 | + elseif ($log['type'] == 'error') { |
|
195 | 195 | echo '<div><em>Line '.$log['line'].'</em> : '.$log['data'].' <pre>'.$log['file'].'</pre></div>'; |
196 | 196 | } |
197 | 197 | |
198 | 198 | echo '</td></tr>'; |
199 | - if($class == '') $class = 'alt'; |
|
199 | + if ($class == '') $class = 'alt'; |
|
200 | 200 | else $class = ''; |
201 | 201 | } |
202 | 202 | |
@@ -207,7 +207,7 @@ discard block |
||
207 | 207 | |
208 | 208 | echo '<div id="pqp-speed" class="pqp-box">'; |
209 | 209 | |
210 | -if($output['logs']['speedCount'] == 0) { |
|
210 | +if ($output['logs']['speedCount'] == 0) { |
|
211 | 211 | echo '<h3>This panel has no log items.</h3>'; |
212 | 212 | } |
213 | 213 | else { |
@@ -218,13 +218,13 @@ discard block |
||
218 | 218 | <table class="main" cellspacing="0">'; |
219 | 219 | |
220 | 220 | $class = ''; |
221 | - foreach($output['logs']['console'] as $log) { |
|
222 | - if($log['type'] == 'speed') { |
|
221 | + foreach ($output['logs']['console'] as $log) { |
|
222 | + if ($log['type'] == 'speed') { |
|
223 | 223 | echo '<tr class="log-'.$log['type'].'"> |
224 | 224 | <td class="'.$class.'">'; |
225 | 225 | echo '<div><pre>'.$log['data'].'</pre> <em>'.$log['name'].'</em></div>'; |
226 | 226 | echo '</td></tr>'; |
227 | - if($class == '') $class = 'alt'; |
|
227 | + if ($class == '') $class = 'alt'; |
|
228 | 228 | else $class = ''; |
229 | 229 | } |
230 | 230 | } |
@@ -236,7 +236,7 @@ discard block |
||
236 | 236 | |
237 | 237 | echo '<div id="pqp-queries" class="pqp-box">'; |
238 | 238 | |
239 | -if($output['queryTotals']['count'] == 0) { |
|
239 | +if ($output['queryTotals']['count'] == 0) { |
|
240 | 240 | echo '<h3>This panel has no log items.</h3>'; |
241 | 241 | } |
242 | 242 | else { |
@@ -248,10 +248,10 @@ discard block |
||
248 | 248 | <table class="main" cellspacing="0">'; |
249 | 249 | |
250 | 250 | $class = ''; |
251 | - foreach($output['queries'] as $query) { |
|
251 | + foreach ($output['queries'] as $query) { |
|
252 | 252 | echo '<tr> |
253 | 253 | <td class="'.$class.'">'.$query['sql']; |
254 | - if($query['explain']) { |
|
254 | + if ($query['explain']) { |
|
255 | 255 | echo '<em> |
256 | 256 | Possible keys: <b>'.$query['explain']['possible_keys'].'</b> · |
257 | 257 | Key Used: <b>'.$query['explain']['key'].'</b> · |
@@ -261,7 +261,7 @@ discard block |
||
261 | 261 | </em>'; |
262 | 262 | } |
263 | 263 | echo '</td></tr>'; |
264 | - if($class == '') $class = 'alt'; |
|
264 | + if ($class == '') $class = 'alt'; |
|
265 | 265 | else $class = ''; |
266 | 266 | } |
267 | 267 | |
@@ -272,7 +272,7 @@ discard block |
||
272 | 272 | |
273 | 273 | echo '<div id="pqp-memory" class="pqp-box">'; |
274 | 274 | |
275 | -if($output['logs']['memoryCount'] == 0) { |
|
275 | +if ($output['logs']['memoryCount'] == 0) { |
|
276 | 276 | echo '<h3>This panel has no log items.</h3>'; |
277 | 277 | } |
278 | 278 | else { |
@@ -283,12 +283,12 @@ discard block |
||
283 | 283 | <table class="main" cellspacing="0">'; |
284 | 284 | |
285 | 285 | $class = ''; |
286 | - foreach($output['logs']['console'] as $log) { |
|
287 | - if($log['type'] == 'memory') { |
|
286 | + foreach ($output['logs']['console'] as $log) { |
|
287 | + if ($log['type'] == 'memory') { |
|
288 | 288 | echo '<tr class="log-'.$log['type'].'">'; |
289 | 289 | echo '<td class="'.$class.'"><b>'.$log['data'].'</b> <em>'.$log['dataType'].'</em>: '.$log['name'].'</td>'; |
290 | 290 | echo '</tr>'; |
291 | - if($class == '') $class = 'alt'; |
|
291 | + if ($class == '') $class = 'alt'; |
|
292 | 292 | else $class = ''; |
293 | 293 | } |
294 | 294 | } |
@@ -300,7 +300,7 @@ discard block |
||
300 | 300 | |
301 | 301 | echo '<div id="pqp-files" class="pqp-box">'; |
302 | 302 | |
303 | -if($output['fileTotals']['count'] == 0) { |
|
303 | +if ($output['fileTotals']['count'] == 0) { |
|
304 | 304 | echo '<h3>This panel has no log items.</h3>'; |
305 | 305 | } |
306 | 306 | else { |
@@ -311,10 +311,10 @@ discard block |
||
311 | 311 | </table> |
312 | 312 | <table class="main" cellspacing="0">'; |
313 | 313 | |
314 | - $class =''; |
|
315 | - foreach($output['files'] as $file) { |
|
314 | + $class = ''; |
|
315 | + foreach ($output['files'] as $file) { |
|
316 | 316 | echo '<tr><td class="'.$class.'"><b>'.$file['size'].'</b> '.$file['name'].'</td></tr>'; |
317 | - if($class == '') $class = 'alt'; |
|
317 | + if ($class == '') $class = 'alt'; |
|
318 | 318 | else $class = ''; |
319 | 319 | } |
320 | 320 |
@@ -33,16 +33,16 @@ discard block |
||
33 | 33 | |
34 | 34 | public function gatherConsoleData() { |
35 | 35 | $logs = Console::getLogs(); |
36 | - if($logs['console']) { |
|
37 | - foreach($logs['console'] as $key => $log) { |
|
38 | - if($log['type'] == 'log') { |
|
36 | + if ($logs['console']) { |
|
37 | + foreach ($logs['console'] as $key => $log) { |
|
38 | + if ($log['type'] == 'log') { |
|
39 | 39 | $logs['console'][$key]['data'] = print_r($log['data'], true); |
40 | 40 | } |
41 | - elseif($log['type'] == 'memory') { |
|
41 | + elseif ($log['type'] == 'memory') { |
|
42 | 42 | $logs['console'][$key]['data'] = $this->getReadableFileSize($log['data']); |
43 | 43 | } |
44 | - elseif($log['type'] == 'speed') { |
|
45 | - $logs['console'][$key]['data'] = $this->getReadableTime(($log['data'] - $this->startTime)*1000); |
|
44 | + elseif ($log['type'] == 'speed') { |
|
45 | + $logs['console'][$key]['data'] = $this->getReadableTime(($log['data'] - $this->startTime) * 1000); |
|
46 | 46 | } |
47 | 47 | } |
48 | 48 | } |
@@ -62,14 +62,14 @@ discard block |
||
62 | 62 | "largest" => 0, |
63 | 63 | ); |
64 | 64 | |
65 | - foreach($files as $key => $file) { |
|
65 | + foreach ($files as $key => $file) { |
|
66 | 66 | $size = filesize($file); |
67 | 67 | $fileList[] = array( |
68 | 68 | 'name' => $file, |
69 | 69 | 'size' => $this->getReadableFileSize($size) |
70 | 70 | ); |
71 | 71 | $fileTotals['size'] += $size; |
72 | - if($size > $fileTotals['largest']) $fileTotals['largest'] = $size; |
|
72 | + if ($size > $fileTotals['largest']) $fileTotals['largest'] = $size; |
|
73 | 73 | } |
74 | 74 | |
75 | 75 | $fileTotals['size'] = $this->getReadableFileSize($fileTotals['size']); |
@@ -99,9 +99,9 @@ discard block |
||
99 | 99 | $queryTotals['time'] = 0; |
100 | 100 | $queries = array(); |
101 | 101 | |
102 | - if($this->db != '') { |
|
102 | + if ($this->db != '') { |
|
103 | 103 | $queryTotals['count'] += $this->db->queryCount; |
104 | - foreach($this->db->queries as $key => $query) { |
|
104 | + foreach ($this->db->queries as $key => $query) { |
|
105 | 105 | $query = $this->attemptToExplainQuery($query); |
106 | 106 | $queryTotals['time'] += $query['time']; |
107 | 107 | $query['time'] = $this->getReadableTime($query['time']); |
@@ -123,8 +123,8 @@ discard block |
||
123 | 123 | $sql = 'EXPLAIN '.$query['sql']; |
124 | 124 | $rs = $this->db->query($sql); |
125 | 125 | } |
126 | - catch(Exception $e) {} |
|
127 | - if($rs) { |
|
126 | + catch (Exception $e) {} |
|
127 | + if ($rs) { |
|
128 | 128 | $row = mysql_fetch_array($rs, MYSQL_ASSOC); |
129 | 129 | $query['explain'] = $row; |
130 | 130 | } |
@@ -137,7 +137,7 @@ discard block |
||
137 | 137 | |
138 | 138 | public function gatherSpeedData() { |
139 | 139 | $speedTotals = array(); |
140 | - $speedTotals['total'] = $this->getReadableTime(($this->getMicroTime() - $this->startTime)*1000); |
|
140 | + $speedTotals['total'] = $this->getReadableTime(($this->getMicroTime() - $this->startTime) * 1000); |
|
141 | 141 | $speedTotals['allowed'] = ini_get("max_execution_time"); |
142 | 142 | $this->output['speedTotals'] = $speedTotals; |
143 | 143 | } |
@@ -172,15 +172,15 @@ discard block |
||
172 | 172 | $ret = $time; |
173 | 173 | $formatter = 0; |
174 | 174 | $formats = array('ms', 's', 'm'); |
175 | - if($time >= 1000 && $time < 60000) { |
|
175 | + if ($time >= 1000 && $time < 60000) { |
|
176 | 176 | $formatter = 1; |
177 | 177 | $ret = ($time / 1000); |
178 | 178 | } |
179 | - if($time >= 60000) { |
|
179 | + if ($time >= 60000) { |
|
180 | 180 | $formatter = 2; |
181 | 181 | $ret = ($time / 1000) / 60; |
182 | 182 | } |
183 | - $ret = number_format($ret,3,'.','') . ' ' . $formats[$formatter]; |
|
183 | + $ret = number_format($ret, 3, '.', '').' '.$formats[$formatter]; |
|
184 | 184 | return $ret; |
185 | 185 | } |
186 | 186 | |
@@ -196,7 +196,7 @@ discard block |
||
196 | 196 | $this->gatherMemoryData(); |
197 | 197 | $this->gatherQueryData(); |
198 | 198 | $this->gatherSpeedData(); |
199 | - require_once __DIR__ . '/../display.php'; |
|
199 | + require_once __DIR__.'/../display.php'; |
|
200 | 200 | displayPqp($this->output, $this->config); |
201 | 201 | } |
202 | 202 |