| Current Path : /var/www/administrator/components/com_qf3/tmpl/ |
| Current File : /var/www/administrator/components/com_qf3/tmpl/forms.php |
<?php
/**
* @package Joomla & QuickForm
* @Copyright ((c) plasma-web.ru
* @license GPLv2 or later
*/
namespace QuickForm;
\defined('QF3_VERSION') or die;
?>
<div class="qfbreadcrumbs"><b><a href="index.php?option=com_qf3&view=projects"><?php echo Text::_('QF_ALL_PROJECTS'); ?></a> -> <a href="index.php?option=com_qf3&view=projects&task=project.edit&id=<?php echo (int) $_GET['projectid'] ?>"><?php echo $this->projectTitle; ?></a> -> <?php echo Text::_('QF_FIELD_GROUPS'); ?></b></div>
<form method="post" name="qfadminform" class="formstyle">
<table class="qftable">
<thead>
<tr>
<th><input autocomplete="off" type="checkbox" name="cid[]" onclick="qfadmin.checkAll(this)"></th>
<th><?php echo $this->filterdir('def', 'QF_BY_DEFAULT') ?></th>
<th class="qftitle"><?php echo $this->filterdir('title', 'Title') ?></th>
<th><?php echo $this->filterdir('id', 'ID') ?></th>
</tr>
</thead>
<tbody>
<?php
foreach ($this->items as $item) {
?>
<tr>
<td><input autocomplete="off" type="checkbox" name="cid[]" value="<?php echo $item->id ?>"></td>
<td><?php echo $this->defbtn($item) ?></td>
<td class="qftitle"><a href="index.php?option=com_qf3&view=projects&task=form.edit&id=<?php echo $item->id ?>"><?php echo $item->title ?></a></td>
<td><?php echo $item->id ?></td>
</tr>
<?php
} ?>
</tbody>
</table>
<?php
echo $this->pagination;
?>
<input type="hidden" name="projectid" value="<?php echo (int) $_GET['projectid'] ?>" />
</form>