setName('taskprocessing:task-type:set-enabled') ->setDescription('Enable or disable a task type') ->addArgument( 'task-type-id', InputArgument::REQUIRED, 'ID of the task type to configure' ) ->addArgument( 'enabled', InputArgument::REQUIRED, 'status of the task type availability. Set 1 to enable and 0 to disable.' ); parent::configure(); } protected function execute(InputInterface $input, OutputInterface $output): int { $enabled = (bool)$input->getArgument('enabled'); $taskType = $input->getArgument('task-type-id'); $json = $this->config->getAppValue('core', 'ai.taskprocessing_type_preferences'); if ($json === '') { $taskTypeSettings = []; } else { $taskTypeSettings = json_decode($json, true, flags: JSON_THROW_ON_ERROR); } $taskTypeSettings[$taskType] = $enabled; $this->config->setAppValue('core', 'ai.taskprocessing_type_preferences', json_encode($taskTypeSettings)); $this->writeArrayInOutputFormat($input, $output, $taskTypeSettings); return 0; } }