Файловый менеджер - Редактировать - /var/www/html/administrator/components/com_akeebabackup/vendor/akeeba/engine/dev_platform/Command/ProfileRename.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 Silly\Application; use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Output\OutputInterface; use Symfony\Component\Console\Style\SymfonyStyle; class ProfileRename { public static function register(Application $app) { $app ->command('profile:rename [id] [description]', new self()) ->descriptions( 'Rename a backup profile', [ 'id' => 'Profile ID', 'description' => 'The new backup profile description', ] ); } public function __invoke( int $id, string $description, InputInterface $input, OutputInterface $output, SymfonyStyle $io ) { $db = Factory::getDatabase(); $query = $db->getQuery(true) ->select( [ $db->quoteName('id'), $db->quoteName('description'), ] ) ->from($db->quoteName('#__ak_profiles')) ->where($db->quoteName('id') . ' = ' . $db->quote($id));; $profile = $db->setQuery($query)->loadObject(); if (!is_object($profile) || !isset($profile->id) || $profile->id != $id) { $io->error(sprintf("Profile ID %d does not exist", $id)); return; } $o = (object) [ 'id' => $id, 'description' => $description, ]; $db->updateObject('#__ak_profiles', $o, 'id'); $io->success("Profile #{$o->id} renamed."); } }
| ver. 1.1 | |
.
| PHP 8.4.18 | Ð“ÐµÐ½ÐµÑ€Ð°Ñ†Ð¸Ñ Ñтраницы: 0 |
proxy
|
phpinfo
|
ÐаÑтройка