29 ->setDescription(
"Updates an existing ILIAS installation")
30 ->addOption(
"ignore-db-update-messages", null, InputOption::VALUE_NONE,
"Ignore messages from the database update steps.");
35 $io->
title(
"Updating ILIAS");
40 $io->
success(
"Update complete. Thanks and have fun!");
49 public function trackAchievementOf(
Objective $objective) :
void 52 public function isAchieved(
Objective $objective) :
bool 60 foreach ($config->getKeys() as $k) {
61 $environment = $environment->
withConfigFor($k, $config->getConfig($k));
68 public function execute(InputInterface $input, OutputInterface $output)
72 if ($input->hasOption(
"ignore-db-update-messages") && $input->getOption(
"ignore-db-update-messages")) {
73 define(
"ILIAS_SETUP_IGNORE_DB_UPDATE_STEP_MESSAGES",
true);
75 return parent::execute($input, $output);
A objective collection is a objective that is achieved once all subobjectives are achieved...
Wrapper around symfonies input and output facilities to provide just the functionality required for t...
printOutroMessage(IOWrapper $io)
An objective is a desired state of the system that is supposed to be created by the setup...
buildEnvironment(Agent $agent, ?Config $config, IOWrapper $io)
Tracks the achievement of objectives.
getUpdateObjective(Config $config=null)
Get the goal the agent wants to achieve on update.
An agent that is just a collection of some other agents.
A agent is some component that performs part of the setup process.
withConfigFor(string $component, $config)
Stores a config for some component in the environment.
getObjective(Agent $agent, ?Config $config)
const RESOURCE_ACHIEVEMENT_TRACKER
printIntroMessage(IOWrapper $io)
execute(InputInterface $input, OutputInterface $output)
An environment holds resources to be used in the setup process.
const RESOURCE_ADMIN_INTERACTION
A configuration for the setup.