Spade
Mini Shell
| Directory:~$ /home/lmsyaran/www/administrator/components/com_rsticketspro/views/reports/tmpl/ |
| [Home] [System Details] [Kill Me] |
<?php
/**
* @version 2.0.0
* @package RSTickets! Pro 2.0.0
* @copyright (C) 2010 www.rsjoomla.com
* @license GPL, http://www.gnu.org/licenses/gpl-2.0.html
*/
defined('_JEXEC') or die('Restricted access'); ?>
<?php if($staff = $this->form->getFieldset('staff')) {
?>
<table class="table table-striped table-condensed"
id="rst_reports_staff">
<?php foreach ($staff as $field) { ?>
<?php if (strtolower($field->type) ==
'checkbox') { ?>
<tr>
<td class="key"><?php echo
$field->input; ?><?php echo $field->label ?></td>
<?php } else { ?>
<td><?php echo $field->input; ?></td>
</tr>
<?php } ?>
<?php } ?>
</table>
<?php }