diff options
| author | Nathan Kinkade <nkinkade@nkinka.de> | 2010-01-03 15:51:24 +0000 |
|---|---|---|
| committer | Nathan Kinkade <nkinkade@nkinka.de> | 2010-01-03 15:51:24 +0000 |
| commit | 399abbc3a754cf5fdcfdff113446e1bc264091e2 (patch) | |
| tree | 592188568e15325d59e51bf19cfdf667fae8d86d /system/views/kohana_profiler_table.php | |
| parent | 925a6a2220760cb7daacee1ab80a07b61b3a30a1 (diff) | |
| parent | 64e5efd57ba1479179c202e1b76b6eeb42d2924c (diff) | |
Merge branch 'master' of git://github.com/gallery/gallery3
Diffstat (limited to 'system/views/kohana_profiler_table.php')
| -rw-r--r-- | system/views/kohana_profiler_table.php | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/system/views/kohana_profiler_table.php b/system/views/kohana_profiler_table.php deleted file mode 100644 index b6b46530..00000000 --- a/system/views/kohana_profiler_table.php +++ /dev/null @@ -1,25 +0,0 @@ -<?php defined('SYSPATH') OR die('No direct access allowed.'); ?> -<table class="kp-table"> -<?php -foreach ($rows as $row): - -$class = empty($row['class']) ? '' : ' class="'.$row['class'].'"'; -$style = empty($row['style']) ? '' : ' style="'.$row['style'].'"'; -?> - <tr<?php echo $class; echo $style; ?>> - <?php - foreach ($columns as $index => $column) - { - $class = empty($column['class']) ? '' : ' class="'.$column['class'].'"'; - $style = empty($column['style']) ? '' : ' style="'.$column['style'].'"'; - $value = $row['data'][$index]; - $value = (is_array($value) OR is_object($value)) ? '<pre>'.html::specialchars(print_r($value, TRUE)).'</pre>' : html::specialchars($value); - echo '<td', $style, $class, '>', $value, '</td>'; - } - ?> - </tr> -<?php - -endforeach; -?> -</table>
\ No newline at end of file |
