This project does not seem to handle request data directly as such no vulnerable execution paths were found.
include
, or for example
via PHP's auto-loading mechanism.
These results are based on our legacy PHP analysis, consider migrating to our new PHP analysis engine instead. Learn more
1 | <?php |
||
0 ignored issues
–
show
|
|||
2 | /** |
||
3 | * CodeIgniter |
||
4 | * |
||
5 | * An open source application development framework for PHP |
||
6 | * |
||
7 | * This content is released under the MIT License (MIT) |
||
8 | * |
||
9 | * Copyright (c) 2014 - 2015, British Columbia Institute of Technology |
||
10 | * |
||
11 | * Permission is hereby granted, free of charge, to any person obtaining a copy |
||
12 | * of this software and associated documentation files (the "Software"), to deal |
||
13 | * in the Software without restriction, including without limitation the rights |
||
14 | * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
||
15 | * copies of the Software, and to permit persons to whom the Software is |
||
16 | * furnished to do so, subject to the following conditions: |
||
17 | * |
||
18 | * The above copyright notice and this permission notice shall be included in |
||
19 | * all copies or substantial portions of the Software. |
||
20 | * |
||
21 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
||
22 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
||
23 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
||
24 | * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
||
25 | * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
||
26 | * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN |
||
27 | * THE SOFTWARE. |
||
28 | * |
||
29 | * @package CodeIgniter |
||
30 | * @author EllisLab Dev Team |
||
31 | * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (http://ellislab.com/) |
||
32 | * @copyright Copyright (c) 2014 - 2015, British Columbia Institute of Technology (http://bcit.ca/) |
||
33 | * @license http://opensource.org/licenses/MIT MIT License |
||
34 | * @link http://codeigniter.com |
||
35 | * @since Version 1.0.0 |
||
36 | * @filesource |
||
37 | */ |
||
38 | defined('BASEPATH') OR exit('No direct script access allowed'); |
||
39 | |||
40 | /** |
||
41 | * CodeIgniter Profiler Class |
||
42 | * |
||
43 | * This class enables you to display benchmark, query, and other data |
||
44 | * in order to help with debugging and optimization. |
||
45 | * |
||
46 | * Note: At some point it would be good to move all the HTML in this class |
||
47 | * into a set of template files in order to allow customization. |
||
48 | * |
||
49 | * @package CodeIgniter |
||
50 | * @subpackage Libraries |
||
51 | * @category Libraries |
||
52 | * @author EllisLab Dev Team |
||
53 | * @link http://codeigniter.com/user_guide/general/profiling.html |
||
54 | */ |
||
55 | class CI_Profiler { |
||
0 ignored issues
–
show
Comprehensibility
Best Practice
introduced
by
The type
CI_Profiler has been defined more than once; this definition is ignored, only the first definition in application/libraries/Profiler.php (L5-5) is considered.
This check looks for classes that have been defined more than once. If you can, we would recommend to use standard object-oriented programming techniques. For example, to avoid multiple types, it might make sense to create a common interface, and then multiple, different implementations for that interface. This also has the side-effect of providing you with better IDE auto-completion, static analysis and also better OPCode caching from PHP. ![]() |
|||
56 | |||
57 | /** |
||
58 | * List of profiler sections available to show |
||
59 | * |
||
60 | * @var array |
||
61 | */ |
||
62 | protected $_available_sections = array( |
||
63 | 'benchmarks', |
||
64 | 'get', |
||
65 | 'memory_usage', |
||
66 | 'post', |
||
67 | 'uri_string', |
||
68 | 'controller_info', |
||
69 | 'queries', |
||
70 | 'http_headers', |
||
71 | 'session_data', |
||
72 | 'config' |
||
73 | ); |
||
74 | |||
75 | /** |
||
76 | * Number of queries to show before making the additional queries togglable |
||
77 | * |
||
78 | * @var int |
||
79 | */ |
||
80 | protected $_query_toggle_count = 25; |
||
81 | |||
82 | /** |
||
83 | * Reference to the CodeIgniter singleton |
||
84 | * |
||
85 | * @var object |
||
86 | */ |
||
87 | protected $CI; |
||
88 | |||
89 | // -------------------------------------------------------------------- |
||
90 | |||
91 | /** |
||
92 | * Class constructor |
||
93 | * |
||
94 | * Initialize Profiler |
||
95 | * |
||
96 | * @param array $config Parameters |
||
97 | */ |
||
98 | public function __construct($config = array()) |
||
99 | { |
||
100 | $this->CI =& get_instance(); |
||
101 | $this->CI->load->language('profiler'); |
||
102 | |||
103 | // default all sections to display |
||
104 | View Code Duplication | foreach ($this->_available_sections as $section) |
|
105 | { |
||
106 | if ( ! isset($config[$section])) |
||
107 | { |
||
108 | $this->_compile_{$section} = TRUE; |
||
109 | } |
||
110 | } |
||
111 | |||
112 | $this->set_sections($config); |
||
113 | log_message('info', 'Profiler Class Initialized'); |
||
114 | } |
||
115 | |||
116 | // -------------------------------------------------------------------- |
||
117 | |||
118 | /** |
||
119 | * Set Sections |
||
120 | * |
||
121 | * Sets the private _compile_* properties to enable/disable Profiler sections |
||
122 | * |
||
123 | * @param mixed $config |
||
124 | * @return void |
||
125 | */ |
||
126 | public function set_sections($config) |
||
127 | { |
||
128 | View Code Duplication | if (isset($config['query_toggle_count'])) |
|
129 | { |
||
130 | $this->_query_toggle_count = (int) $config['query_toggle_count']; |
||
131 | unset($config['query_toggle_count']); |
||
132 | } |
||
133 | |||
134 | View Code Duplication | foreach ($config as $method => $enable) |
|
135 | { |
||
136 | if (in_array($method, $this->_available_sections)) |
||
137 | { |
||
138 | $this->_compile_{$method} = ($enable !== FALSE); |
||
139 | } |
||
140 | } |
||
141 | } |
||
142 | |||
143 | // -------------------------------------------------------------------- |
||
144 | |||
145 | /** |
||
146 | * Auto Profiler |
||
147 | * |
||
148 | * This function cycles through the entire array of mark points and |
||
149 | * matches any two points that are named identically (ending in "_start" |
||
150 | * and "_end" respectively). It then compiles the execution times for |
||
151 | * all points and returns it as an array |
||
152 | * |
||
153 | * @return array |
||
154 | */ |
||
155 | protected function _compile_benchmarks() |
||
156 | { |
||
157 | $profile = array(); |
||
158 | View Code Duplication | foreach ($this->CI->benchmark->marker as $key => $val) |
|
159 | { |
||
160 | // We match the "end" marker so that the list ends |
||
161 | // up in the order that it was defined |
||
162 | if (preg_match('/(.+?)_end$/i', $key, $match) |
||
163 | && isset($this->CI->benchmark->marker[$match[1].'_end'], $this->CI->benchmark->marker[$match[1].'_start'])) |
||
164 | { |
||
165 | $profile[$match[1]] = $this->CI->benchmark->elapsed_time($match[1].'_start', $key); |
||
166 | } |
||
167 | } |
||
168 | |||
169 | // Build a table containing the profile data. |
||
170 | // Note: At some point we should turn this into a template that can |
||
171 | // be modified. We also might want to make this data available to be logged |
||
172 | |||
173 | $output = "\n\n" |
||
174 | .'<fieldset id="ci_profiler_benchmarks" style="border:1px solid #900;padding:6px 10px 10px 10px;margin:20px 0 20px 0;background-color:#eee;">' |
||
175 | ."\n" |
||
176 | .'<legend style="color:#900;"> '.$this->CI->lang->line('profiler_benchmarks')." </legend>" |
||
177 | ."\n\n\n<table style=\"width:100%;\">\n"; |
||
178 | |||
179 | foreach ($profile as $key => $val) |
||
180 | { |
||
181 | $key = ucwords(str_replace(array('_', '-'), ' ', $key)); |
||
182 | $output .= '<tr><td style="padding:5px;width:50%;color:#000;font-weight:bold;background-color:#ddd;">' |
||
183 | .$key.' </td><td style="padding:5px;width:50%;color:#900;font-weight:normal;background-color:#ddd;">' |
||
184 | .$val."</td></tr>\n"; |
||
185 | } |
||
186 | |||
187 | return $output."</table>\n</fieldset>"; |
||
188 | } |
||
189 | |||
190 | // -------------------------------------------------------------------- |
||
191 | |||
192 | /** |
||
193 | * Compile Queries |
||
194 | * |
||
195 | * @return string |
||
196 | */ |
||
197 | protected function _compile_queries() |
||
198 | { |
||
199 | $dbs = array(); |
||
200 | |||
201 | // Let's determine which databases are currently connected to |
||
202 | foreach (get_object_vars($this->CI) as $name => $cobject) |
||
203 | { |
||
204 | if (is_object($cobject)) |
||
205 | { |
||
206 | if ($cobject instanceof CI_DB) |
||
207 | { |
||
208 | $dbs[get_class($this->CI).':$'.$name] = $cobject; |
||
209 | } |
||
210 | elseif ($cobject instanceof CI_Model) |
||
211 | { |
||
212 | foreach (get_object_vars($cobject) as $mname => $mobject) |
||
213 | { |
||
214 | if ($mobject instanceof CI_DB) |
||
215 | { |
||
216 | $dbs[get_class($cobject).':$'.$mname] = $mobject; |
||
217 | } |
||
218 | } |
||
219 | } |
||
220 | } |
||
221 | } |
||
222 | |||
223 | if (count($dbs) === 0) |
||
224 | { |
||
225 | return "\n\n" |
||
226 | .'<fieldset id="ci_profiler_queries" style="border:1px solid #0000FF;padding:6px 10px 10px 10px;margin:20px 0 20px 0;background-color:#eee;">' |
||
227 | ."\n" |
||
228 | .'<legend style="color:#0000FF;"> '.$this->CI->lang->line('profiler_queries').' </legend>' |
||
229 | ."\n\n\n<table style=\"border:none; width:100%;\">\n" |
||
230 | .'<tr><td style="width:100%;color:#0000FF;font-weight:normal;background-color:#eee;padding:5px;">' |
||
231 | .$this->CI->lang->line('profiler_no_db') |
||
232 | ."</td></tr>\n</table>\n</fieldset>"; |
||
233 | } |
||
234 | |||
235 | // Load the text helper so we can highlight the SQL |
||
236 | $this->CI->load->helper('text'); |
||
237 | |||
238 | // Key words we want bolded |
||
239 | $highlight = array('SELECT', 'DISTINCT', 'FROM', 'WHERE', 'AND', 'LEFT JOIN', 'ORDER BY', 'GROUP BY', 'LIMIT', 'INSERT', 'INTO', 'VALUES', 'UPDATE', 'OR ', 'HAVING', 'OFFSET', 'NOT IN', 'IN', 'LIKE', 'NOT LIKE', 'COUNT', 'MAX', 'MIN', 'ON', 'AS', 'AVG', 'SUM', '(', ')'); |
||
240 | |||
241 | $output = "\n\n"; |
||
242 | $count = 0; |
||
243 | |||
244 | foreach ($dbs as $name => $db) |
||
245 | { |
||
246 | $hide_queries = (count($db->queries) > $this->_query_toggle_count) ? ' display:none' : ''; |
||
247 | $total_time = number_format(array_sum($db->query_times), 4).' '.$this->CI->lang->line('profiler_seconds'); |
||
248 | |||
249 | $show_hide_js = '(<span style="cursor: pointer;" onclick="var s=document.getElementById(\'ci_profiler_queries_db_'.$count.'\').style;s.display=s.display==\'none\'?\'\':\'none\';this.innerHTML=this.innerHTML==\''.$this->CI->lang->line('profiler_section_hide').'\'?\''.$this->CI->lang->line('profiler_section_show').'\':\''.$this->CI->lang->line('profiler_section_hide').'\';">'.$this->CI->lang->line('profiler_section_hide').'</span>)'; |
||
250 | |||
251 | if ($hide_queries !== '') |
||
252 | { |
||
253 | $show_hide_js = '(<span style="cursor: pointer;" onclick="var s=document.getElementById(\'ci_profiler_queries_db_'.$count.'\').style;s.display=s.display==\'none\'?\'\':\'none\';this.innerHTML=this.innerHTML==\''.$this->CI->lang->line('profiler_section_show').'\'?\''.$this->CI->lang->line('profiler_section_hide').'\':\''.$this->CI->lang->line('profiler_section_show').'\';">'.$this->CI->lang->line('profiler_section_show').'</span>)'; |
||
254 | } |
||
255 | |||
256 | $output .= '<fieldset style="border:1px solid #0000FF;padding:6px 10px 10px 10px;margin:20px 0 20px 0;background-color:#eee;">' |
||
257 | ."\n" |
||
258 | .'<legend style="color:#0000FF;"> '.$this->CI->lang->line('profiler_database') |
||
259 | .': '.$db->database.' ('.$name.') '.$this->CI->lang->line('profiler_queries') |
||
260 | .': '.count($db->queries).' ('.$total_time.') '.$show_hide_js."</legend>\n\n\n" |
||
261 | .'<table style="width:100%;'.$hide_queries.'" id="ci_profiler_queries_db_'.$count."\">\n"; |
||
262 | |||
263 | if (count($db->queries) === 0) |
||
264 | { |
||
265 | $output .= '<tr><td style="width:100%;color:#0000FF;font-weight:normal;background-color:#eee;padding:5px;">' |
||
266 | .$this->CI->lang->line('profiler_no_queries')."</td></tr>\n"; |
||
267 | } |
||
268 | else |
||
269 | { |
||
270 | foreach ($db->queries as $key => $val) |
||
271 | { |
||
272 | $time = number_format($db->query_times[$key], 4); |
||
273 | $val = highlight_code($val); |
||
274 | |||
275 | foreach ($highlight as $bold) |
||
276 | { |
||
277 | $val = str_replace($bold, '<strong>'.$bold.'</strong>', $val); |
||
278 | } |
||
279 | |||
280 | $output .= '<tr><td style="padding:5px;vertical-align:top;width:1%;color:#900;font-weight:normal;background-color:#ddd;">' |
||
281 | .$time.' </td><td style="padding:5px;color:#000;font-weight:normal;background-color:#ddd;">' |
||
282 | .$val."</td></tr>\n"; |
||
283 | } |
||
284 | } |
||
285 | |||
286 | $output .= "</table>\n</fieldset>"; |
||
287 | $count++; |
||
288 | } |
||
289 | |||
290 | return $output; |
||
291 | } |
||
292 | |||
293 | // -------------------------------------------------------------------- |
||
294 | |||
295 | /** |
||
296 | * Compile $_GET Data |
||
297 | * |
||
298 | * @return string |
||
299 | */ |
||
300 | protected function _compile_get() |
||
301 | { |
||
302 | $output = "\n\n" |
||
303 | .'<fieldset id="ci_profiler_get" style="border:1px solid #cd6e00;padding:6px 10px 10px 10px;margin:20px 0 20px 0;background-color:#eee;">' |
||
304 | ."\n" |
||
305 | .'<legend style="color:#cd6e00;"> '.$this->CI->lang->line('profiler_get_data')." </legend>\n"; |
||
306 | |||
307 | if (count($_GET) === 0) |
||
308 | { |
||
309 | $output .= '<div style="color:#cd6e00;font-weight:normal;padding:4px 0 4px 0;">'.$this->CI->lang->line('profiler_no_get').'</div>'; |
||
310 | } |
||
311 | else |
||
312 | { |
||
313 | $output .= "\n\n<table style=\"width:100%;border:none;\">\n"; |
||
314 | |||
315 | foreach ($_GET as $key => $val) |
||
316 | { |
||
317 | is_int($key) OR $key = "'".$key."'"; |
||
318 | |||
319 | $output .= '<tr><td style="width:50%;color:#000;background-color:#ddd;padding:5px;">$_GET[' |
||
320 | .$key.'] </td><td style="width:50%;padding:5px;color:#cd6e00;font-weight:normal;background-color:#ddd;">' |
||
321 | .((is_array($val) OR is_object($val)) ? '<pre>'.htmlspecialchars(stripslashes(print_r($val, TRUE))).'</pre>' : htmlspecialchars(stripslashes($val))) |
||
322 | ."</td></tr>\n"; |
||
323 | } |
||
324 | |||
325 | $output .= "</table>\n"; |
||
326 | } |
||
327 | |||
328 | return $output.'</fieldset>'; |
||
329 | } |
||
330 | |||
331 | // -------------------------------------------------------------------- |
||
332 | |||
333 | /** |
||
334 | * Compile $_POST Data |
||
335 | * |
||
336 | * @return string |
||
337 | */ |
||
338 | protected function _compile_post() |
||
339 | { |
||
340 | $output = "\n\n" |
||
341 | .'<fieldset id="ci_profiler_post" style="border:1px solid #009900;padding:6px 10px 10px 10px;margin:20px 0 20px 0;background-color:#eee;">' |
||
342 | ."\n" |
||
343 | .'<legend style="color:#009900;"> '.$this->CI->lang->line('profiler_post_data')." </legend>\n"; |
||
344 | |||
345 | if (count($_POST) === 0 && count($_FILES) === 0) |
||
346 | { |
||
347 | $output .= '<div style="color:#009900;font-weight:normal;padding:4px 0 4px 0;">'.$this->CI->lang->line('profiler_no_post').'</div>'; |
||
348 | } |
||
349 | else |
||
350 | { |
||
351 | $output .= "\n\n<table style=\"width:100%;\">\n"; |
||
352 | |||
353 | foreach ($_POST as $key => $val) |
||
354 | { |
||
355 | is_int($key) OR $key = "'".$key."'"; |
||
356 | |||
357 | $output .= '<tr><td style="width:50%;padding:5px;color:#000;background-color:#ddd;">$_POST[' |
||
358 | .$key.'] </td><td style="width:50%;padding:5px;color:#009900;font-weight:normal;background-color:#ddd;">'; |
||
359 | |||
360 | if (is_array($val) OR is_object($val)) |
||
361 | { |
||
362 | $output .= '<pre>'.htmlspecialchars(stripslashes(print_r($val, TRUE))).'</pre>'; |
||
363 | } |
||
364 | else |
||
365 | { |
||
366 | $output .= htmlspecialchars(stripslashes($val)); |
||
367 | } |
||
368 | |||
369 | $output .= "</td></tr>\n"; |
||
370 | } |
||
371 | |||
372 | foreach ($_FILES as $key => $val) |
||
373 | { |
||
374 | is_int($key) OR $key = "'".$key."'"; |
||
375 | |||
376 | $output .= '<tr><td style="width:50%;padding:5px;color:#000;background-color:#ddd;">$_FILES[' |
||
377 | .$key.'] </td><td style="width:50%;padding:5px;color:#009900;font-weight:normal;background-color:#ddd;">'; |
||
378 | |||
379 | if (is_array($val) OR is_object($val)) |
||
380 | { |
||
381 | $output .= '<pre>'.htmlspecialchars(stripslashes(print_r($val, TRUE))).'</pre>'; |
||
382 | } |
||
383 | |||
384 | $output .= "</td></tr>\n"; |
||
385 | } |
||
386 | |||
387 | $output .= "</table>\n"; |
||
388 | } |
||
389 | |||
390 | return $output.'</fieldset>'; |
||
391 | } |
||
392 | |||
393 | // -------------------------------------------------------------------- |
||
394 | |||
395 | /** |
||
396 | * Show query string |
||
397 | * |
||
398 | * @return string |
||
399 | */ |
||
400 | protected function _compile_uri_string() |
||
401 | { |
||
402 | return "\n\n" |
||
403 | .'<fieldset id="ci_profiler_uri_string" style="border:1px solid #000;padding:6px 10px 10px 10px;margin:20px 0 20px 0;background-color:#eee;">' |
||
404 | ."\n" |
||
405 | .'<legend style="color:#000;"> '.$this->CI->lang->line('profiler_uri_string')." </legend>\n" |
||
406 | .'<div style="color:#000;font-weight:normal;padding:4px 0 4px 0;">' |
||
407 | .($this->CI->uri->uri_string === '' ? $this->CI->lang->line('profiler_no_uri') : $this->CI->uri->uri_string) |
||
408 | .'</div></fieldset>'; |
||
409 | } |
||
410 | |||
411 | // -------------------------------------------------------------------- |
||
412 | |||
413 | /** |
||
414 | * Show the controller and function that were called |
||
415 | * |
||
416 | * @return string |
||
417 | */ |
||
418 | protected function _compile_controller_info() |
||
419 | { |
||
420 | return "\n\n" |
||
421 | .'<fieldset id="ci_profiler_controller_info" style="border:1px solid #995300;padding:6px 10px 10px 10px;margin:20px 0 20px 0;background-color:#eee;">' |
||
422 | ."\n" |
||
423 | .'<legend style="color:#995300;"> '.$this->CI->lang->line('profiler_controller_info')." </legend>\n" |
||
424 | .'<div style="color:#995300;font-weight:normal;padding:4px 0 4px 0;">'.$this->CI->router->class.'/'.$this->CI->router->method |
||
425 | .'</div></fieldset>'; |
||
426 | } |
||
427 | |||
428 | // -------------------------------------------------------------------- |
||
429 | |||
430 | /** |
||
431 | * Compile memory usage |
||
432 | * |
||
433 | * Display total used memory |
||
434 | * |
||
435 | * @return string |
||
436 | */ |
||
437 | protected function _compile_memory_usage() |
||
438 | { |
||
439 | return "\n\n" |
||
440 | .'<fieldset id="ci_profiler_memory_usage" style="border:1px solid #5a0099;padding:6px 10px 10px 10px;margin:20px 0 20px 0;background-color:#eee;">' |
||
441 | ."\n" |
||
442 | .'<legend style="color:#5a0099;"> '.$this->CI->lang->line('profiler_memory_usage')." </legend>\n" |
||
443 | .'<div style="color:#5a0099;font-weight:normal;padding:4px 0 4px 0;">' |
||
444 | .(($usage = memory_get_usage()) != '' ? number_format($usage).' bytes' : $this->CI->lang->line('profiler_no_memory')) |
||
445 | .'</div></fieldset>'; |
||
446 | } |
||
447 | |||
448 | // -------------------------------------------------------------------- |
||
449 | |||
450 | /** |
||
451 | * Compile header information |
||
452 | * |
||
453 | * Lists HTTP headers |
||
454 | * |
||
455 | * @return string |
||
456 | */ |
||
457 | protected function _compile_http_headers() |
||
458 | { |
||
459 | $output = "\n\n" |
||
460 | .'<fieldset id="ci_profiler_http_headers" style="border:1px solid #000;padding:6px 10px 10px 10px;margin:20px 0 20px 0;background-color:#eee;">' |
||
461 | ."\n" |
||
462 | .'<legend style="color:#000;"> '.$this->CI->lang->line('profiler_headers') |
||
463 | .' (<span style="cursor: pointer;" onclick="var s=document.getElementById(\'ci_profiler_httpheaders_table\').style;s.display=s.display==\'none\'?\'\':\'none\';this.innerHTML=this.innerHTML==\''.$this->CI->lang->line('profiler_section_show').'\'?\''.$this->CI->lang->line('profiler_section_hide').'\':\''.$this->CI->lang->line('profiler_section_show').'\';">'.$this->CI->lang->line('profiler_section_show')."</span>)</legend>\n\n\n" |
||
464 | .'<table style="width:100%;display:none;" id="ci_profiler_httpheaders_table">'."\n"; |
||
465 | |||
466 | foreach (array('HTTP_ACCEPT', 'HTTP_USER_AGENT', 'HTTP_CONNECTION', 'SERVER_PORT', 'SERVER_NAME', 'REMOTE_ADDR', 'SERVER_SOFTWARE', 'HTTP_ACCEPT_LANGUAGE', 'SCRIPT_NAME', 'REQUEST_METHOD',' HTTP_HOST', 'REMOTE_HOST', 'CONTENT_TYPE', 'SERVER_PROTOCOL', 'QUERY_STRING', 'HTTP_ACCEPT_ENCODING', 'HTTP_X_FORWARDED_FOR', 'HTTP_DNT') as $header) |
||
467 | { |
||
468 | $val = isset($_SERVER[$header]) ? $_SERVER[$header] : ''; |
||
469 | $output .= '<tr><td style="vertical-align:top;width:50%;padding:5px;color:#900;background-color:#ddd;">' |
||
470 | .$header.' </td><td style="width:50%;padding:5px;color:#000;background-color:#ddd;">'.$val."</td></tr>\n"; |
||
471 | } |
||
472 | |||
473 | return $output."</table>\n</fieldset>"; |
||
474 | } |
||
475 | |||
476 | // -------------------------------------------------------------------- |
||
477 | |||
478 | /** |
||
479 | * Compile config information |
||
480 | * |
||
481 | * Lists developer config variables |
||
482 | * |
||
483 | * @return string |
||
484 | */ |
||
485 | protected function _compile_config() |
||
486 | { |
||
487 | $output = "\n\n" |
||
488 | .'<fieldset id="ci_profiler_config" style="border:1px solid #000;padding:6px 10px 10px 10px;margin:20px 0 20px 0;background-color:#eee;">' |
||
489 | ."\n" |
||
490 | .'<legend style="color:#000;"> '.$this->CI->lang->line('profiler_config').' (<span style="cursor: pointer;" onclick="var s=document.getElementById(\'ci_profiler_config_table\').style;s.display=s.display==\'none\'?\'\':\'none\';this.innerHTML=this.innerHTML==\''.$this->CI->lang->line('profiler_section_show').'\'?\''.$this->CI->lang->line('profiler_section_hide').'\':\''.$this->CI->lang->line('profiler_section_show').'\';">'.$this->CI->lang->line('profiler_section_show')."</span>)</legend>\n\n\n" |
||
491 | .'<table style="width:100%;display:none;" id="ci_profiler_config_table">'."\n"; |
||
492 | |||
493 | View Code Duplication | foreach ($this->CI->config->config as $config => $val) |
|
494 | { |
||
495 | if (is_array($val) OR is_object($val)) |
||
496 | { |
||
497 | $val = print_r($val, TRUE); |
||
498 | } |
||
499 | |||
500 | $output .= '<tr><td style="padding:5px;vertical-align:top;color:#900;background-color:#ddd;">' |
||
501 | .$config.' </td><td style="padding:5px;color:#000;background-color:#ddd;">'.htmlspecialchars($val)."</td></tr>\n"; |
||
502 | } |
||
503 | |||
504 | return $output."</table>\n</fieldset>"; |
||
505 | } |
||
506 | |||
507 | // -------------------------------------------------------------------- |
||
508 | |||
509 | /** |
||
510 | * Compile session userdata |
||
511 | * |
||
512 | * @return string |
||
513 | */ |
||
514 | protected function _compile_session_data() |
||
515 | { |
||
516 | if ( ! isset($this->CI->session)) |
||
517 | { |
||
518 | return; |
||
519 | } |
||
520 | |||
521 | $output = '<fieldset id="ci_profiler_csession" style="border:1px solid #000;padding:6px 10px 10px 10px;margin:20px 0 20px 0;background-color:#eee;">' |
||
522 | .'<legend style="color:#000;"> '.$this->CI->lang->line('profiler_session_data').' (<span style="cursor: pointer;" onclick="var s=document.getElementById(\'ci_profiler_session_data\').style;s.display=s.display==\'none\'?\'\':\'none\';this.innerHTML=this.innerHTML==\''.$this->CI->lang->line('profiler_section_show').'\'?\''.$this->CI->lang->line('profiler_section_hide').'\':\''.$this->CI->lang->line('profiler_section_show').'\';">'.$this->CI->lang->line('profiler_section_show').'</span>)</legend>' |
||
523 | .'<table style="width:100%;display:none;" id="ci_profiler_session_data">'; |
||
524 | |||
525 | View Code Duplication | foreach ($this->CI->session->userdata() as $key => $val) |
|
526 | { |
||
527 | if (is_array($val) OR is_object($val)) |
||
528 | { |
||
529 | $val = print_r($val, TRUE); |
||
530 | } |
||
531 | |||
532 | $output .= '<tr><td style="padding:5px;vertical-align:top;color:#900;background-color:#ddd;">' |
||
533 | .$key.' </td><td style="padding:5px;color:#000;background-color:#ddd;">'.htmlspecialchars($val)."</td></tr>\n"; |
||
534 | } |
||
535 | |||
536 | return $output."</table>\n</fieldset>"; |
||
537 | } |
||
538 | |||
539 | // -------------------------------------------------------------------- |
||
540 | |||
541 | /** |
||
542 | * Run the Profiler |
||
543 | * |
||
544 | * @return string |
||
545 | */ |
||
546 | public function run() |
||
547 | { |
||
548 | $output = '<div id="codeigniter_profiler" style="clear:both;background-color:#fff;padding:10px;">'; |
||
549 | $fields_displayed = 0; |
||
550 | |||
551 | foreach ($this->_available_sections as $section) |
||
552 | { |
||
553 | if ($this->_compile_{$section} !== FALSE) |
||
554 | { |
||
555 | $func = '_compile_'.$section; |
||
556 | $output .= $this->{$func}(); |
||
557 | $fields_displayed++; |
||
558 | } |
||
559 | } |
||
560 | |||
561 | if ($fields_displayed === 0) |
||
562 | { |
||
563 | $output .= '<p style="border:1px solid #5a0099;padding:10px;margin:20px 0;background-color:#eee;">' |
||
564 | .$this->CI->lang->line('profiler_no_profiles').'</p>'; |
||
565 | } |
||
566 | |||
567 | return $output.'</div>'; |
||
568 | } |
||
569 | |||
570 | } |
||
571 |
The PSR-1: Basic Coding Standard recommends that a file should either introduce new symbols, that is classes, functions, constants or similar, or have side effects. Side effects are anything that executes logic, like for example printing output, changing ini settings or writing to a file.
The idea behind this recommendation is that merely auto-loading a class should not change the state of an application. It also promotes a cleaner style of programming and makes your code less prone to errors, because the logic is not spread out all over the place.
To learn more about the PSR-1, please see the PHP-FIG site on the PSR-1.