23        return hash(
"sha256", self::class);
 
   28        return "Fill ini with settings for Services/Logging";
 
   45        $ini = $environment->getResource(Setup\Environment::RESOURCE_ILIAS_INI);
 
   47        $ini->setVariable(
"log", 
"enabled", $this->config->isEnabled() ? 
"1" : 
"0");
 
   48        $ini->setVariable(
"log", 
"path", dirname($this->config->getPathToLogfile()));
 
   49        $ini->setVariable(
"log", 
"file", basename($this->config->getPathToLogfile()));
 
   50        $ini->setVariable(
"log", 
"error_path", $this->config->getErrorlogDir());
 
   64        $ini = $environment->getResource(Setup\Environment::RESOURCE_ILIAS_INI);
 
   65        $enabled = $this->config->isEnabled() ? 
"1" : 
"0";
 
   68            $ini->readVariable(
"log", 
"path") !== dirname($this->config->getPathToLogfile()) ||
 
   69            $ini->readVariable(
"log", 
"file") !== basename($this->config->getPathToLogfile()) ||
 
   70            $ini->readVariable(
"log", 
"error_path") !== $this->config->getErrorlogDir() ||
 
   71            $ini->readVariable(
"log", 
"enabled") !== $enabled
 
An exception for terminatinating execution or to throw for unit testing.
Signals that some goal won't be achievable by actions of the system ever.
getPreconditions(Setup\Environment $environment)
achieve(Setup\Environment $environment)
isApplicable(Setup\Environment $environment)
@inheritDoc
__construct(\ilLoggingSetupConfig $config)
An environment holds resources to be used in the setup process.
An objective is a desired state of the system that is supposed to be created by the setup.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...