| 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/profiles/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_edit.php 409 2011-01-24 09:30:22Z nikosdion $
* @since 1.3
*/
defined('_JEXEC') or die('Restricted access');
// Include tooltip support
jimport('joomla.html.html');
JHTML::_('behavior.tooltip');
if( empty($this->profile) )
{
$id = 0;
$description = '';
}
else
{
$id = $this->profile->id;
$description = $this->profile->description;
}
?>
<form action="index.php" method="post" name="adminForm" id="adminForm">
<input type="hidden" name="option" value="com_akeeba" />
<input type="hidden" name="view" value="profiles" />
<input type="hidden" name="boxchecked" id="boxchecked" value="0" />
<input type="hidden" name="task" id="task" value="" />
<input type="hidden" name="id" id="id" value="<?php echo $id; ?>" />
<table>
<tr>
<td><?php echo JHTML::_('tooltip', JText::_('PROFILE_LABEL_DESCRIPTION_TOOLTIP'), '', '', JText::_('PROFILE_LABEL_DESCRIPTION')) ?></td>
<td><input type="text" name="description" id="description" value="<?php echo $description; ?>" /></td>
</tr>
</table>
</form>