33 return hash(
"sha256", self::class);
38 return "Fill ini with settings for Services/BackgroundTasks";
58 $ini = $environment->getResource(Setup\Environment::RESOURCE_ILIAS_INI);
60 if (!
$ini->groupExists(
"background_tasks")) {
61 $ini->addGroup(
"background_tasks");
64 $ini->setVariable(
"background_tasks",
"concurrency", $this->config->getType());
65 $ini->setVariable(
"background_tasks",
"number_of_concurrent_tasks", $this->config->getMaxCurrentTasks());
68 throw new Setup\UnachievableException(
"Could not write ilias.ini.php");
79 $ini = $environment->getResource(Setup\Environment::RESOURCE_ILIAS_INI);
82 !
$ini->groupExists(
"background_tasks") ||
83 $ini->readVariable(
"background_tasks",
"concurrency") !== $this->config->getType() ||
84 $ini->readVariable(
"background_tasks",
"number_of_concurrent_tasks") !== $this->config->getMaxCurrentTasks()
isApplicable(Setup\Environment $environment)
__construct(\ilBackgroundTasksSetupConfig $config)
ilBackgroundTasksSetupConfig $config
getPreconditions(Setup\Environment $environment)
achieve(Setup\Environment $environment)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
An environment holds resources to be used in the setup process.