/
githubmirror
/
joomla-cms
Обзор
Документация
Войти
/
githubmirror
/
joomla-cms
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
5.4-dev
installation/tmpl/setup/default.php
141 строка
6 KB
Brian Teeman
[5.3] Installer rtl logical css (#45420)
12 май 2025, 13:25
Не верифицирован
12 май 2025, 13:25
758b7be
Код
Авторство
О чём код?
<?php /** * @package Joomla.Installation * @subpackage View * * @copyright (C) 2017 Open Source Matters, Inc. <https://www.joomla.org> * @license GNU General Public License version 2 or later; see LICENSE.txt */ defined('_JEXEC') or die; use Joomla\CMS\Factory; use Joomla\CMS\HTML\HTMLHelper; use Joomla\CMS\Language\Text; HTMLHelper::_('behavior.formvalidator'); $direction = Factory::getLanguage()->isRtl() ? 'left' : 'right'; /** @var \Joomla\CMS\Installation\View\Setup\HtmlView $this */ ?> <div id="installer-view" data-page-name="setup"> <form action="index.php" method="post" id="languageForm" class="lang-select"> <fieldset class="j-install-step active"> <legend class="j-install-step-header"> <span class="icon-language" aria-hidden="true"></span> <?php echo Text::_('INSTL_SELECT_INSTALL_LANG'); ?> </legend> <div class="j-install-step-form"> <div class="mb-3"> <?php echo $this->form->renderField('language'); ?> </div> <input type="hidden" name="task" value="language.set"> <input type="hidden" name="format" value="json"> <?php echo HTMLHelper::_('form.token'); ?> </div> </fieldset> </form> <form action="index.php" method="post" id="adminForm" class="form-validate"> <fieldset id="installStep1" class="j-install-step active"> <legend class="j-install-step-header"> <span class="icon-cog" aria-hidden="true"></span> <?php echo Text::_('INSTL_SETUP_SITE_NAME'); ?> </legend> <div class="j-install-step-form"> <div class="mb-3"> <?php echo $this->form->renderField('site_name'); ?> </div> <div class="mt-4 mb-3"> <button id="step1" class="btn btn-primary w-100"><?php echo Text::_('INSTL_SETUP_LOGIN_DATA'); ?> <span class="icon-chevron-<?php echo $direction; ?>" aria-hidden="true"></span></button> </div> </div> </fieldset> <fieldset id="installStep2" class="j-install-step"> <legend class="j-install-step-header"> <span class="icon-lock" aria-hidden="true"></span> <?php echo Text::_('INSTL_LOGIN_DATA'); ?> </legend> <div class="j-install-step-form"> <div class="mb-3"> <?php echo $this->form->renderField('admin_user'); ?> </div> <div class="mb-3"> <?php echo $this->form->renderField('admin_username'); ?> </div> <div class="mb-3"> <?php echo $this->form->renderField('admin_password'); ?> </div> <div class="mb-3"> <?php echo $this->form->renderField('admin_email'); ?> </div> <div class="mt-4 mb-3"> <button id="step2" class="btn btn-primary w-100"><?php echo Text::_('INSTL_CONNECT_DB'); ?> <span class="icon-chevron-<?php echo $direction; ?>" aria-hidden="true"></span></button> </div> </div> </fieldset> <fieldset id="installStep3" class="j-install-step" > <legend class="j-install-step-header"> <span class="icon-database" aria-hidden="true"></span> <?php echo Text::_('INSTL_DATABASE'); ?> </legend> <div class="j-install-step-form"> <div class="mb-3"> <?php echo $this->form->renderField('db_type'); ?> </div> <div class="mb-3"> <?php echo $this->form->renderField('db_host'); ?> </div> <div class="mb-3"> <?php echo $this->form->renderField('db_user'); ?> </div> <div class="mb-3"> <?php echo $this->form->renderField('db_pass'); ?> </div> <div class="mb-3"> <?php echo $this->form->renderField('db_name'); ?> </div> <div class="mb-3"> <?php echo $this->form->renderField('db_prefix'); ?> </div> <div class="mb-3"> <?php echo $this->form->renderField('db_encryption'); ?> </div> <div class="mb-3"> <?php echo $this->form->renderField('db_sslkey'); ?> </div> <div class="mb-3"> <?php echo $this->form->renderField('db_sslcert'); ?> </div> <div class="mb-3"> <?php echo $this->form->renderField('db_sslverifyservercert'); ?> </div> <div class="mb-3"> <?php echo $this->form->renderField('db_sslca'); ?> </div> <div class="mb-3"> <?php echo $this->form->renderField('db_sslcipher'); ?> </div> <div class="mb-3"> <?php //echo $this->form->getLabel('db_old'); ?> <?php echo $this->form->getInput('db_old'); ?> </div> <div class="mt-4 mb-3"> <button id="setupButton" class="btn btn-primary w-100"><?php echo Text::_('INSTL_INSTALL_JOOMLA'); ?> <span class="icon-chevron-<?php echo $direction; ?>" aria-hidden="true"></span></button> </div> </div> </fieldset> <fieldset id="installStep4" class="j-install-step" > <legend class="j-install-step-header"> <span class="icon-cogs" aria-hidden="true"></span> <?php echo Text::_('INSTL_PROGRESS'); ?> </legend> <div class="j-install-step-form" aria-live="polite" > <label class="progresslabel text-center"> <progress class="progressbar" id="progressbar" value="0" max="8"></progress> <span id="progress-text" role="status"><?php echo Text::_('INSTL'); ?></span> </label> </div> </fieldset> <input type="hidden" name="admin_password2" id="jform_admin_password2"> <?php echo HTMLHelper::_('form.token'); ?> </form> </div>