| Current Path : /var/www/iplanru/data/www/i-plan.ru/administrator/components/com_zoo/views/comment/tmpl/ |
| Current File : /var/www/iplanru/data/www/i-plan.ru/administrator/components/com_zoo/views/comment/tmpl/_edit.php |
<?php
/**
* @package com_zoo
* @author YOOtheme http://www.yootheme.com
* @copyright Copyright (C) YOOtheme GmbH
* @license http://www.gnu.org/licenses/gpl.html GNU/GPL
*/
// no direct access
defined('_JEXEC') or die('Restricted access');
// filter content
JFilterOutput::objectHTMLSafe($this->comment->content);
?>
<tr id="edit-comment-editor">
<td colspan="4">
<div class="head">
<label for="author"><?php echo JText::_('Name'); ?></label>
<input id="author" type="text" name="author" value="<?php echo $this->comment->author; ?>" />
<label for="email"><?php echo JText::_('E-Mail'); ?></label>
<input id="email" type="text" name="email" value="<?php echo $this->comment->email; ?>" />
<label for="url"><?php echo JText::_('URL'); ?></label>
<input id="url" type="text" name="url" value="<?php echo $this->comment->url; ?>" />
</div>
<div class="content">
<textarea name="content" cols="1" rows="1"><?php echo $this->comment->content; ?></textarea>
</div>
<div class="actions">
<button class="save" type="button"><?php echo JText::_('Update Comment'); ?></button>
<a href="#" class="cancel"><?php echo JText::_('Cancel'); ?></a>
</div>
<input type="hidden" name="cid" value="<?php echo $this->comment->id; ?>" />
</td>
</tr>