| Current Path : /home/sunflowe/www2/j15/administrator/components/com_akeeba/views/buadmin/tmpl/ |
| Current File : /home/sunflowe/www2/j15/administrator/components/com_akeeba/views/buadmin/tmpl/default_comment.php |
<?php
/**
* @package AkeebaBackup
* @copyright Copyright (c)2009-2012 Nicholas K. Dionysopoulos
* @license GNU General Public License version 3, or later
* @version $Id: default_comment.php 681 2011-06-01 08:50:04Z nikosdion $
* @since 1.3
*/
// Protect from unauthorized access
defined('_JEXEC') or die('Restricted Access');
$editor =& JFactory::getEditor();
$getText = $editor->getContent('comment');
?>
<div id="jpcontainer">
<form name="adminForm" id="adminForm" action="index.php" method="post">
<input type="hidden" name="option" value="com_akeeba" />
<input type="hidden" name="task" value="" />
<input type="hidden" name="view" value="buadmin" />
<input type="hidden" name="id" value="<?php echo $this->record['id'] ?>" />
<?php echo JHTML::_( 'form.token' ); ?>
<table class="adminlist">
<tr>
<td><?php echo JText::_('STATS_LABEL_DESCRIPTION'); ?></td>
<td><input type="text" name="description" maxlength="255" size="50"
value="<?php echo $this->record['description'] ?>" />
</td>
</tr>
<tr>
<td><?php echo JText::_('STATS_LABEL_COMMENT'); ?></td>
<td><?php echo $editor->display( 'comment', $this->record['comment'], '550', '200', '60', '20', array() ) ; ?>
</tr>
</table>
</form>
</div>