| Current Path : /home/sunflowe/www2/j30/administrator/components/com_akeeba/View/RemoteFiles/tmpl/ |
| Current File : /home/sunflowe/www2/j30/administrator/components/com_akeeba/View/RemoteFiles/tmpl/dlprogress.php |
<?php
/**
* @package AkeebaBackup
* @copyright Copyright (c)2006-2016 Nicholas K. Dionysopoulos
* @license GNU General Public License version 3, or later
*/
// Protect from unauthorized access
defined('_JEXEC') or die();
/** @var \Akeeba\Backup\Admin\View\RemoteFiles\Html $this */
?>
<div id="backup-percentage" class="progress">
<div id="progressbar-inner" class="bar" style="width: <?php echo $this->percent ?>%"></div>
</div>
<div class="well">
<?php echo \JText::sprintf('COM_AKEEBA_REMOTEFILES_LBL_DOWNLOADEDSOFAR', $this->done, $this->total, $this->percent); ?>
</div>
<form action="index.php" name="adminForm" id="adminForm">
<input type="hidden" name="option" value="com_akeeba" />
<input type="hidden" name="view" value="RemoteFiles" />
<input type="hidden" name="task" value="dltoserver" />
<input type="hidden" name="tmpl" value="component" />
<input type="hidden" name="id" value="<?php echo (int)$this->id; ?>" />
<input type="hidden" name="part" value="<?php echo (int)$this->part; ?>" />
<input type="hidden" name="frag" value="<?php echo (int)$this->frag; ?>" />
</form>