| Server IP : 195.130.67.5 / Your IP : 216.73.217.154 Web Server : Microsoft-IIS/10.0 System : Windows NT WEBSERVER1 10.0 build 17763 (Windows Server 2016) i586 User : IUSR ( 0) PHP Version : 7.4.19 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/inetpub/wwwroot/icd/administrator/components/com_akeeba/views/buadmin/tmpl/ |
Upload File : |
<?php
/**
* @package AkeebaBackup
* @copyright Copyright (c)2006-2011 Nicholas K. Dionysopoulos
* @license GNU General Public License version 3, or later
* @version $Id: default_comment.php 409 2011-01-24 09:30:22Z 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'] ?>" />
<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>