PHP Classes

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

Recommend this page to a friend!
  Classes of Simo   CodeIgniter Develbar   third_party/DevelBar/views/develbar/helpers.php   Download  
File: third_party/DevelBar/views/develbar/helpers.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/helpers.php
Date: 2 months ago
Size: 484 bytes
 

Contents

Class file image Download
<img src="<?php echo $icon ?>" title="<?php echo lang('helpers') ?>"
     alt="<?php echo lang('helpers') ?>"/> <?php echo lang('helpers') . ' (' . count($helpers) . ')' ?>
<?php
if(count($helpers)): ?>
<div class="detail">
    <div class="scroll">
    <?php
   
foreach ($helpers as $helper) {
        echo
'
            <p>
                <span class="left-col"><strong>'
. ucfirst($helper) . '</strong></span>';
        echo
'</p>';
    }
   
?>
</div>
</div>
<?php endif; ?>