PHP Classes

File: third_party/DevelBar/views/develbar/config.php

Recommend this page to a friend!
  Classes of Simo   CodeIgniter Develbar   third_party/DevelBar/views/develbar/config.php   Download  
File: third_party/DevelBar/views/develbar/config.php
Role: Configuration script
Content type: text/plain
Description: Configuration script
Class: CodeIgniter Develbar
CodeIgniter library to show a developer toolbar
Author: By
Last change: Update of third_party/DevelBar/views/develbar/config.php
Date: 2 months ago
Size: 700 bytes
 

Contents

Class file image Download
<img src="<?php echo $icon ?>"
     alt="<?php echo lang('config') ?>" title="<?php echo lang('config') ?>"/> <?php echo lang('config') ?>
<div class="detail config">
        <div class="scroll">
            <?php
           
foreach ($configuration as $config => $val) {
                if (
is_array($val) OR is_object($val)) {
                   
$val = print_r($val, true);
                }
                echo
'<p>';
                echo
'<span class="left-col" style="width:60%">' . $config . ':</span>';
                echo
'<span class="right-col" style="width:40%">' . htmlentities($val) . '</span>';
                echo
'</p>';
            }
           
?>
</div>
    </div>