mirror of
https://github.com/slawkens/myaac.git
synced 2025-10-19 04:03:26 +02:00

* Migrations up down * Add forum model * Syntactic sugar for db structure changes * Refactor migrations with $up & $down * Fix migrations upgrade and downgrade + Add option to disable auto migrate * Add migrate:to command Usage: php aac migrate:to x (x - database version) * Show error when mail is not enabled * Fixes regarding to init.php * Add migrate command to manually upgrade db, incase auto migrate is disabled * Fixed rest of the migrations * Limit max version of database * Don't allow minus number * Option to clear specified plugin settings by name * Version is required * Fix PHPStan errors * Unset $up after migration, to prevent executing same migration twice * Add database version to output * This is not needed * Update 5.php * Set database_auto_migrate on install * Set blank & color only if current db version supports it * Fix duplicate function declaration
58 lines
1.4 KiB
PHP
58 lines
1.4 KiB
PHP
<?php
|
|
|
|
namespace MyAAC\Commands;
|
|
|
|
use MyAAC\Models\Settings as SettingsModel;
|
|
use MyAAC\Settings;
|
|
use Symfony\Component\Console\Input\InputArgument;
|
|
use Symfony\Component\Console\Input\InputInterface;
|
|
use Symfony\Component\Console\Output\OutputInterface;
|
|
use Symfony\Component\Console\Style\SymfonyStyle;
|
|
|
|
class SettingsSetCommand extends Command
|
|
{
|
|
protected function configure(): void
|
|
{
|
|
$this->setName('settings:set')
|
|
->setDescription('Updates the setting specified by argument in database')
|
|
->addArgument('key',
|
|
InputArgument::REQUIRED,
|
|
'Setting name/key'
|
|
)
|
|
->addArgument('value',
|
|
InputArgument::REQUIRED,
|
|
'New value'
|
|
);
|
|
}
|
|
|
|
protected function execute(InputInterface $input, OutputInterface $output): int
|
|
{
|
|
require SYSTEM . 'init.php';
|
|
|
|
$io = new SymfonyStyle($input, $output);
|
|
|
|
$key = $input->getArgument('key');
|
|
$value = $input->getArgument('value');
|
|
|
|
$settings = Settings::getInstance();
|
|
$settings->clearCache();
|
|
$settings->load();
|
|
|
|
$setting = $settings[$key];
|
|
if (!isset($setting['value'])) {
|
|
$io->warning('Settings with this key does not exists');
|
|
return Command::FAILURE;
|
|
}
|
|
|
|
// format plugin_name.key
|
|
// example: core.template
|
|
$explode = explode('.', $key);
|
|
|
|
$settings->updateInDatabase($explode[0], $explode[1], $value);
|
|
$settings->clearCache();
|
|
|
|
$io->success("Setting $key successfully updated");
|
|
return Command::SUCCESS;
|
|
}
|
|
}
|