22 return hash(
"sha256", self::class);
27 return "Fill ini with settings for Services/BackgroundTasks";
37 $common_config = $environment->getConfigFor(
"common");
45 $ini = $environment->getResource(Setup\Environment::RESOURCE_ILIAS_INI);
47 if (!
$ini->groupExists(
"background_tasks")) {
48 $ini->addGroup(
"background_tasks");
51 $ini->setVariable(
"background_tasks",
"concurrency", $this->config->getType());
52 $ini->setVariable(
"background_tasks",
"number_of_concurrent_tasks", $this->config->getMaxCurrentTasks());
55 throw new Setup\UnachievableException(
"Could not write ilias.ini.php");
__construct(\ilBackgroundTasksSetupConfig $config)
getPreconditions(Setup\Environment $environment)
achieve(Setup\Environment $environment)
An environment holds resources to be used in the setup process.