2015-02-22 20:49:59 -05:00
|
|
|
<?php
|
2022-09-08 10:54:04 +02:00
|
|
|
|
2015-02-22 20:49:59 -05:00
|
|
|
/**
|
|
|
|
* Patch testing component for the Joomla! CMS
|
|
|
|
*
|
2018-09-01 09:32:23 -05:00
|
|
|
* @copyright Copyright (C) 2011 - 2012 Ian MacLennan, Copyright (C) 2013 - 2018 Open Source Matters, Inc. All rights reserved.
|
2015-02-22 20:49:59 -05:00
|
|
|
* @license GNU General Public License version 2 or later
|
|
|
|
*/
|
|
|
|
|
2017-08-17 18:22:01 -05:00
|
|
|
use Joomla\CMS\Factory;
|
2019-08-27 20:20:49 -05:00
|
|
|
use Joomla\CMS\HTML\HTMLHelper;
|
|
|
|
use Joomla\CMS\Language\Text;
|
2017-08-17 18:22:01 -05:00
|
|
|
|
2022-09-08 10:54:04 +02:00
|
|
|
// phpcs:disable PSR1.Files.SideEffects
|
|
|
|
\defined('_JEXEC') or die;
|
|
|
|
// phpcs:enable PSR1.Files.SideEffects
|
|
|
|
|
2019-08-27 20:20:49 -05:00
|
|
|
HTMLHelper::_('jquery.framework');
|
|
|
|
HTMLHelper::_('behavior.core');
|
2020-10-10 11:03:49 +02:00
|
|
|
HTMLHelper::_('script', 'com_patchtester/fetcher.js', ['version' => 'auto', 'relative' => true]);
|
|
|
|
Text::script('COM_PATCHTESTER_FETCH_AN_ERROR_HAS_OCCURRED');
|
2015-02-22 20:49:59 -05:00
|
|
|
|
|
|
|
?>
|
|
|
|
|
|
|
|
<div id="patchtester-container">
|
2022-09-08 10:54:04 +02:00
|
|
|
<h1 id="patchtester-progress-header"><?php echo Text::_('COM_PATCHTESTER_FETCH_INITIALIZING'); ?></h1>
|
|
|
|
<p id="patchtester-progress-message"><?php echo Text::_('COM_PATCHTESTER_FETCH_INITIALIZING_DESCRIPTION'); ?></p>
|
|
|
|
<div id="progress" class="progress">
|
|
|
|
<div id="progress-bar" class="progress-bar progress-bar-striped progress-bar-animated bg-success" aria-valuenow="0" aria-valuemin="0" aria-valuemax="100" role="progressbar"></div>
|
|
|
|
</div>
|
2023-08-20 15:54:48 +02:00
|
|
|
<input id="patchtester-token" type="hidden" name="<?php echo Factory::getApplication()->getSession()->getFormToken(); ?>" value="1" />
|
2015-02-22 20:49:59 -05:00
|
|
|
</div>
|