Current File : /home/pacjaorg/.trash/administrator/components/com_admintools/View/DatabaseTools/tmpl/optimize.php |
<?php
/**
* @package admintools
* @copyright Copyright (c)2010-2020 Nicholas K. Dionysopoulos / Akeeba Ltd
* @license GNU General Public License version 3, or later
*/
use Akeeba\AdminTools\Admin\View\DatabaseTools\Html;
use Joomla\CMS\Language\Text;
/** @var $this Html */
defined('_JEXEC') or die;
?>
<?php if (!empty($this->table)): ?>
<h1><?php echo Text::_('COM_ADMINTOOLS_LBL_DATABASETOOLS_OPTIMIZEDB_INPROGRESS'); ?></h1>
<?php else: ?>
<h1><?php echo Text::_('COM_ADMINTOOLS_LBL_DATABASETOOLS_OPTIMIZEDB_COMPLETE'); ?></h1>
<?php endif; ?>
<div class="akeeba-progress">
<div class="akeeba-progress-fill" style="width:<?php echo $this->percent ?>%;"></div>
<div class="akeeba-progress-status">
<?php echo $this->percent ?>%
</div>
</div>
<?php if (!empty($this->table)): ?>
<form action="index.php" name="adminForm" id="adminForm">
<input type="hidden" name="option" value="com_admintools" />
<input type="hidden" name="view" value="DatabaseTools" />
<input type="hidden" name="task" value="optimize" />
<input type="hidden" name="from" value="<?php echo $this->escape($this->table); ?>" />
<input type="hidden" name="tmpl" value="component" />
</form>
<?php endif; ?>
<?php if ($this->percent == 100): ?>
<div class="akeeba-block--info" id="admintools-databasetools-autoclose">
<p><?php echo Text::_('COM_ADMINTOOLS_LBL_COMMON_AUTOCLOSEIN3S'); ?></p>
</div>
<?php endif; ?>