[ Index ]

PHP Cross Reference of Joomla 4.2.2 documentation

title

Body

[close]

/installation/tmpl/preinstall/ -> default.php (source)

   1  <?php
   2  
   3  /**
   4   * @package    Joomla.Installation
   5   *
   6   * @copyright  (C) 2017 Open Source Matters, Inc. <https://www.joomla.org>
   7   * @license    GNU General Public License version 2 or later; see LICENSE.txt
   8   */
   9  
  10  defined('_JEXEC') or die;
  11  
  12  use Joomla\CMS\HTML\HTMLHelper;
  13  use Joomla\CMS\Language\Text;
  14  
  15  HTMLHelper::_('behavior.formvalidator');
  16  
  17  /** @var \Joomla\CMS\Installation\View\Preinstall\HtmlView $this */
  18  ?>
  19  <div id="installer-view" class="container" data-page-name="preinstall">
  20      <div class="row">
  21          <div class="col-md-12 mb-4">
  22              <div class="j-install-step active">
  23                  <div class="j-install-step-header">
  24                      <span class="icon-check" aria-hidden="true"></span> <?php echo Text::_('INSTL_PRECHECK_TITLE'); ?>
  25                  </div>
  26                  <div class="j-install-step-form">
  27                      <?php foreach ($this->options as $option) : ?>
  28                          <?php if ($option->state === 'JNO' || $option->state === false) : ?>
  29                              <div class="alert preinstall-alert">
  30                                  <div class="alert-icon">
  31                                      <span class="alert-icon icon-exclamation-triangle" aria-hidden="true"></span>
  32                                  </div>
  33                                  <div class="alert-text">
  34                                      <strong><?php echo $option->label; ?></strong>
  35                                      <p class="form-text small"><?php echo $option->notice; ?></p>
  36                                  </div>
  37                              </div>
  38                          <?php endif; ?>
  39                      <?php endforeach; ?>
  40                  </div>
  41              </div>
  42          </div>
  43      </div>
  44  </div>


Generated: Wed Sep 7 05:41:13 2022 Chilli.vc Blog - For Webmaster,Blog-Writer,System Admin and Domainer