81 lines
		
	
	
		
			3.2 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			81 lines
		
	
	
		
			3.2 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| /**
 | |
|  * @package     Joomla.Administrator
 | |
|  * @subpackage  com_installer
 | |
|  *
 | |
|  * @copyright   (C) 2006 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\Event\Installer\AddInstallationTabEvent;
 | |
| use Joomla\CMS\Factory;
 | |
| use Joomla\CMS\HTML\HTMLHelper;
 | |
| use Joomla\CMS\Language\Text;
 | |
| use Joomla\CMS\Router\Route;
 | |
| 
 | |
| /** @var \Joomla\Component\Installer\Administrator\View\Install\HtmlView $this */
 | |
| 
 | |
| // Load JavaScript message titles
 | |
| Text::script('ERROR');
 | |
| Text::script('WARNING');
 | |
| Text::script('NOTICE');
 | |
| Text::script('MESSAGE');
 | |
| 
 | |
| Text::script('COM_INSTALLER_MSG_INSTALL_ENTER_A_URL');
 | |
| 
 | |
| /** @var Joomla\CMS\WebAsset\WebAssetManager $wa */
 | |
| $wa = $this->getDocument()->getWebAssetManager();
 | |
| $wa->useScript('core')
 | |
|     ->usePreset('com_installer.installer')
 | |
|     ->useScript('webcomponent.core-loader');
 | |
| 
 | |
| $tabs = Factory::getApplication()->getDispatcher()
 | |
|     ->dispatch('onInstallerAddInstallationTab', new AddInstallationTabEvent('onInstallerAddInstallationTab', []))
 | |
|     ->getArgument('result', []);
 | |
| 
 | |
| ?>
 | |
| <div id="installer-install" class="clearfix">
 | |
| 
 | |
|     <form enctype="multipart/form-data" action="<?php echo Route::_('index.php?option=com_installer&view=install'); ?>" method="post" name="adminForm" id="adminForm">
 | |
|         <?php // Render messages set by extension install scripts here ?>
 | |
|         <?php if ($this->showMessage) : ?>
 | |
|             <?php echo $this->loadTemplate('message'); ?>
 | |
|         <?php endif; ?>
 | |
| 
 | |
|         <div class="row">
 | |
|             <div class="col-md-12">
 | |
|                 <div id="j-main-container" class="j-main-container main-card">
 | |
|                     <?php if (!$tabs) : ?>
 | |
|                         <div class="alert alert-warning">
 | |
|                             <span class="icon-exclamation-circle" aria-hidden="true"></span><span class="visually-hidden"><?php echo Text::_('WARNING'); ?></span>
 | |
|                             <?php echo Text::_('COM_INSTALLER_NO_INSTALLATION_PLUGINS_FOUND'); ?>
 | |
|                         </div>
 | |
|                     <?php endif; ?>
 | |
| 
 | |
|                     <?php if ($tabs) : ?>
 | |
|                         <?php echo HTMLHelper::_('uitab.startTabSet', 'myTab', ['active' => $tabs[0]['name'] ?? '', 'recall' => true, 'breakpoint' => 768]); ?>
 | |
|                         <?php // Show installation tabs ?>
 | |
|                         <?php foreach ($tabs as $tab) : ?>
 | |
|                             <?php echo HTMLHelper::_('uitab.addTab', 'myTab', $tab['name'], $tab['label']); ?>
 | |
|                             <fieldset class="uploadform option-fieldset options-form">
 | |
|                                 <?php echo $tab['content']; ?>
 | |
|                             </fieldset>
 | |
|                             <?php echo HTMLHelper::_('uitab.endTab'); ?>
 | |
|                         <?php endforeach; ?>
 | |
| 
 | |
|                         <?php echo HTMLHelper::_('uitab.endTabSet'); ?>
 | |
|                     <?php endif; ?>
 | |
| 
 | |
|                     <input type="hidden" name="installtype" value="">
 | |
|                     <input type="hidden" name="task" value="install.install">
 | |
|                     <?php echo HTMLHelper::_('form.token'); ?>
 | |
|                 </div>
 | |
|             </div>
 | |
|         </div>
 | |
|     </form>
 | |
| </div>
 | |
| <div id="loading"></div>
 |