Spade
Mini Shell
| Directory:~$ /home/lmsyaran/www/administrator/components/com_rsticketspro/views/group/tmpl/ |
| [Home] [System Details] [Kill Me] |
<?php
/**
* @package RSTickets! Pro
*
* @copyright (c) 2010 - 2016 RSJoomla!
* @link https://www.rsjoomla.com
* @license GNU General Public License
http://www.gnu.org/licenses/gpl-3.0.en.html
*/
defined('_JEXEC') or die('Restricted access');
// set description if required
if (isset($this->fieldset->description) &&
!empty($this->fieldset->description)) { ?>
<?php echo JText::_($this->fieldset->description); ?>
<?php } ?>
<?php
$legend = $this->item->id ? JText::_('RST_EDIT_GROUP') :
JText::_('RST_ADD_NEW_GROUP');
$this->field->startFieldset($legend);
foreach ($this->fields as $field) {
$this->field->showField($field->hidden ? '' :
$field->label, $field->input);
}
$this->field->endFieldset();