Current Directory: /home/astoriaah/www/old15/administrator/components/com_admintools/views/redirs/tmpl
Viewing File: /home/astoriaah/www/old15/administrator/components/com_admintools/views/redirs/tmpl/form.php
<?php
/**
* @package AkeebaReleaseSystem
* @copyright Copyright (c)2010-2015 Nicholas K. Dionysopoulos
* @license GNU General Public License version 3, or later
* @version $Id$
*/
defined('_JEXEC') or die;
$editor = JFactory::getEditor();
$this->loadHelper('select');
?>
<form name="adminForm" id="adminForm" action="index.php" method="post" class="form form-horizontal">
<input type="hidden" name="option" value="com_admintools"/>
<input type="hidden" name="view" value="redirs"/>
<input type="hidden" name="task" value=""/>
<input type="hidden" name="id" value="<?php echo $this->item->id ?>"/>
<input type="hidden" name="<?php echo JFactory::getSession()->getFormToken(); ?>" value="1"/>
<div class="control-group">
<label for="title" class="control-label"><?php echo JText::_('ATOOLS_LBL_REDIRS_SOURCE'); ?></label>
<div class="controls">
<input type="text" name="source" id="source" value="<?php echo $this->item->source ?>">
<div class="help-block">
<?php echo JText::_('COM_ADMINTOOLS_REDIR_FIELD_SOURCE_DESC'); ?>
</div>
</div>
</div>
<div class="control-group">
<label for="alias" class="control-label"><?php echo JText::_('ATOOLS_LBL_REDIRS_DEST'); ?></label>
<div class="controls">
<input type="text" name="dest" id="dest" value="<?php echo $this->item->dest ?>">
<div class="help-block">
<?php echo JText::_('COM_ADMINTOOLS_REDIR_FIELD_DEST_DESC'); ?>
</div>
</div>
</div>
<div class="control-group">
<label for="keepurlparams" class="control-label">
<?php echo JText::_('COM_ADMINTOOLS_REDIR_FIELD_KEEPURLPARAMS'); ?>
</label>
<div class="controls">
<?php echo AdmintoolsHelperSelect::keepUrlParamsList('keepurlparams', null, $this->item->keepurlparams); ?>
<div class="help-block">
<?php echo JText::_('COM_ADMINTOOLS_REDIR_FIELD_KEEPURLPARAMS_DESC'); ?>
</div>
</div>
</div>
<div class="control-group">
<label for="published" class="control-label">
<?php echo JText::_('JPUBLISHED'); ?>
</label>
<div class="controls">
<?php echo JHTML::_('select.booleanlist', 'published', null, $this->item->published); ?>
<div class="help-block">
<?php echo JText::_('COM_ADMINTOOLS_REDIR_FIELD_PUBLISHED_DESC'); ?>
</div>
</div>
</div>
<div style="clear:left"></div>
</form>