Файловый менеджер - Редактировать - /var/www/html/install.zip
Ðазад
PK ! K��� � default.xmlnu �[��� <?xml version="1.0" encoding="UTF-8"?> <metadata> <layout title="COM_INSTALLER_INSTALL_VIEW_DEFAULT_TITLE"> <message> <![CDATA[COM_INSTALLER_INSTALL_VIEW_DEFAULT_DESC]]> </message> </layout> </metadata> PK ! T�Z� � default.phpnu �[��� <?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> PK ! eT��� � 9 sql/updates/php/6.4.0-2024-10-21_update_configuration.phpnu �[��� <?php /** * Kunena Component * * @package Kunena.Installer * * @copyright Copyright (C) 2008 - 2026 Kunena Team. All rights reserved. * @license https://www.gnu.org/copyleft/gpl.html GNU/GPL * @link https://www.kunena.org **/ defined('_JEXEC') or die(); use Joomla\CMS\Language\Text; use Kunena\Forum\Libraries\Factory\KunenaFactory; /** * @param $parent * * @return array * @throws Exception * @since Kunena 6.4.0 */ function kunena_640_2024_10_21_update_configuration($parent) { $config = KunenaFactory::getConfig(); unset($config->social); // Save configuration $config->save(); return array('action' => '', 'name' => Text::_('COM_KUNENA_INSTALL_640_UPDATE_CONFIGURATION'), 'success' => true); } PK ! Ҁd�v v >