Файловый менеджер - Редактировать - /var/www/html/administrator/components/com_akeebabackup/vendor/akeeba/engine/dev_platform/Command/ConfigExport.php
Ðазад
<?php /** * Akeeba Engine * * @package akeebaengine * @copyright Copyright (c)2006-2024 Nicholas K. Dionysopoulos / Akeeba Ltd * @license https://www.gnu.org/licenses/gpl-3.0.html GNU General Public License version 3, or later * * This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public * License as published by the Free Software Foundation, version 3. * * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along with this program. If not, see * <https://www.gnu.org/licenses/>. */ namespace Akeeba\Engine\DevPlatform\Command; use Akeeba\Engine\Factory; use Akeeba\Engine\Platform; use Silly\Application; use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Output\OutputInterface; use Symfony\Component\Console\Style\SymfonyStyle; class ConfigExport extends ConfigList { public static function register(Application $app) { $app ->command('export [--profile=]', new self()) ->defaults( [ 'profile' => 1, ] ) ->descriptions( 'Export profile configuration parameters to a JSON file', [ '--profile' => 'Profile ID', ] ); } public function __invoke(int $profile, InputInterface $input, OutputInterface $output, SymfonyStyle $io) { define('AKEEBA_PROFILE', $profile); $platform = Platform::getInstance(); $platform->load_configuration($profile); $config = Factory::getConfiguration(); $info = $this->squash(json_decode(Factory::getEngineParamsProvider()->getJsonGuiDefinition(), true)); $export = []; foreach ($info as $key => $details) { $export[$key] = $config->get($key); } file_put_contents( getcwd() . '/config.json', json_encode($export, JSON_PRETTY_PRINT) ); } }
| ver. 1.1 | |
.
| PHP 8.4.18 | Ð“ÐµÐ½ÐµÑ€Ð°Ñ†Ð¸Ñ Ñтраницы: 0 |
proxy
|
phpinfo
|
ÐаÑтройка