| Server IP : 213.186.33.4 / Your IP : 216.73.216.59 Web Server : Apache System : Linux webm006.cluster103.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64 User : awebpaca ( 35430) PHP Version : 8.5.0 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/awebpaca/visitevirtuelle/components/com_akeeba/views/light/tmpl/ |
Upload File : |
<?php
/**
* @package AkeebaBackup
* @copyright Copyright (c)2009-2014 Nicholas K. Dionysopoulos
* @license GNU General Public License version 2, or later
*
* @since 2.1
*/
// Protect from unauthorized access
defined('_JEXEC') or die();
$array = $this->array;
switch($array['Domain'])
{
case 'init':
$domain = JText::_('LIGHT_DOMAIN_INIT');
break;
case 'installer':
$domain = JText::_('LIGHT_DOMAIN_INSTALLER');
break;
case 'PackDB':
$domain = JText::_('LIGHT_DOMAIN_PACKDB');
break;
case 'Packing':
$domain = JText::_('LIGHT_DOMAIN_PACKING');
break;
case 'finale':
default:
$domain = JText::_('LIGHT_DOMAIN_FINALE');
break;
}
$step = ($array['HasRun'] == 1) ? 'done' : 'step';
?>
<html>
<head>
<title><?php echo JText::_('LIGHT_HEADER');?></title>
</head>
<body>
<h1><?php echo JText::_('LIGHT_HEADER');?></h1>
<form action="index.php" method="post" name="adminForm" id="adminForm">
<input type="hidden" name="option" value="com_akeeba" />
<input type="hidden" name="view" value="light" />
<input type="hidden" name="format" value="raw" />
<input type="hidden" name="task" value="<?php echo $step ?>" />
<input type="hidden" name="key" value="<?php echo $this->key ?>" />
<table border="0"
style="border: thin solid black; background-color: #eeeeff;"
width="100%">
<tr>
<td><b><?php echo $domain ?></b></td>
</tr>
<tr>
<td><?php echo $array['Step']; ?></td>
</tr>
<tr>
<td style="color: gray;"><?php echo $array['Substep']; ?></td>
</tr>
<tr>
<td><small><?php echo date('Y-m-d H:i:s T', time()) ?></small></td>
</tr>
</table>
</form>
<script type="text/javascript" language="javascript">
document.getElementById('adminForm').submit();
</script>
</body>
</html>