| 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 : /inetpub/wwwroot/icd/administrator/components/com_akeeba/views/log/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.php 515 2011-03-22 13:45:19Z nikosdion $
* @since 1.3
*/
defined('_JEXEC') or die('Restricted access');
if(empty($this->tag)) $this->tag = null;
?>
<fieldset>
<legend><?php echo JText::_('CPANEL_PROFILE_TITLE'); ?>: #<?php echo $this->profileid; ?></legend>
<?php echo $this->profilename; ?>
</fieldset>
<?php if(count($this->logs)): ?>
<form name="adminForm" action="index.php" method="post">
<input name="option" value="com_akeeba" type="hidden" />
<input name="view" value="log" type="hidden" />
<fieldset>
<label for="tag"><?php echo JText::_('LOG_CHOOSE_FILE_TITLE'); ?></label>
<?php echo JHTML::_('select.genericlist', $this->logs, 'tag', 'onchange=submitform()', 'value', 'text', $this->tag, 'tag') ?>
<?php if(!empty($this->tag)): ?>
<input type="button" value="<?php echo JText::_('LOG_LABEL_DOWNLOAD'); ?>" onclick="window.location='<?php echo JURI::base(); ?>index.php?option=com_akeeba&view=log&task=download&tag=<?php echo urlencode($this->tag); ?>';"></input>
<?php endif; ?>
<?php if(!empty($this->tag)): ?>
<br/>
<hr/>
<iframe
src="<?php echo JURI::base(); ?>index.php?option=com_akeeba&view=log&task=iframe&layout=raw&tag=<?php echo urlencode($this->tag); ?>"
width="99%" height="400px">
</iframe>
<?php endif; ?>
</fieldset>
</form>
<?php else: ?>
<fieldset>
<h2><?php echo JText::_('LOG_NONE_FOUND') ?></h2>
</fieldset>
<?php endif; ?>