mirror of
https://github.com/joomla-extensions/patchtester.git
synced 2024-11-01 03:02:39 +00:00
63510fe4f9
Signed-off-by: Roland Dalmulder <contact@rolandd.com>
27 lines
751 B
PHP
27 lines
751 B
PHP
<?php
|
|
|
|
/**
|
|
* Patch testing component for the Joomla! CMS
|
|
*
|
|
* @copyright Copyright (C) 2011 - 2012 Ian MacLennan, Copyright (C) 2013 - 2018 Open Source Matters, Inc. All rights reserved.
|
|
* @license GNU General Public License version 2 or later
|
|
*/
|
|
|
|
use Joomla\CMS\Language\Text;
|
|
|
|
// phpcs:disable PSR1.Files.SideEffects
|
|
\defined('_JEXEC') or die;
|
|
// phpcs:enable PSR1.Files.SideEffects
|
|
|
|
/** @var \Joomla\Component\Patchtester\Administrator\View\Pulls\PullsHtmlView $this */
|
|
?>
|
|
<h3><?php echo Text::_('COM_PATCHTESTER_REQUIREMENTS_HEADING'); ?></h3>
|
|
<p><?php echo Text::_('COM_PATCHTESTER_REQUIREMENTS_NOT_MET'); ?></p>
|
|
<ul>
|
|
<?php foreach ($this->envErrors as $error) :
|
|
?>
|
|
<li><?php echo $error; ?></li>
|
|
<?php
|
|
endforeach; ?>
|
|
</ul>
|