28 lines
726 B
PHP
28 lines
726 B
PHP
<?php
|
|
/**
|
|
* @package akeebabackup
|
|
* @copyright Copyright (c)2006-2022 Nicholas K. Dionysopoulos / Akeeba Ltd
|
|
* @license GNU General Public License version 3, or later
|
|
*/
|
|
|
|
// Protect from unauthorized access
|
|
defined('_JEXEC') || die();
|
|
|
|
use Joomla\CMS\Language\Text;
|
|
|
|
?>
|
|
<div id="backup-percentage" class="progress">
|
|
<div class="progress-bar" role="progressbar"
|
|
style="width: <?= (int) $this->percent ?>%"
|
|
aria-valuenow="<?= (int) $this->percent ?>" aria-valuemin="0" aria-valuemax="100">
|
|
<?= (int) $this->percent ?>%
|
|
</div>
|
|
</div>
|
|
|
|
<div class="alert alert-info">
|
|
<p>
|
|
<?= Text::sprintf('COM_AKEEBABACKUP_REMOTEFILES_LBL_DOWNLOADEDSOFAR',
|
|
$this->done, $this->total, $this->percent) ?>
|
|
</p>
|
|
</div>
|