PHP Classes

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

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

Contents

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