1 <?php declare(strict_types=1);
41 $this->ilias_path = dirname(__FILE__, 5);
42 $this->delos_path =
"$this->ilias_path/templates/default/";
43 $this->skins_path =
"$this->ilias_path/Customizing/global/skin/";
46 $this->delos_responsive_logo_hash = $this->
getFileHash($this->delos_path . self::RESPONSIVE_LOGO_PATH);
47 $this->delos_common_logo_hash = $this->
getFileHash($this->delos_path . self::COMMON_LOGO_PATH);
55 return hash(
"sha256", self::class);
63 return 'Replacing responsive logos where necessary.';
80 return (file_exists($this->skins_path) && is_dir($this->skins_path));
97 if (null === $this->delos_common_logo_hash || null === $this->delos_responsive_logo_hash) {
102 if (
'.' === $skin_name ||
'..' === $skin_name) {
118 $responsive_logo = $skin_path . self::RESPONSIVE_LOGO_PATH;
119 $common_logo = $skin_path . self::COMMON_LOGO_PATH;
121 if ($this->
getFileHash($common_logo) !== $this->delos_common_logo_hash &&
122 $this->
getFileHash($responsive_logo) === $this->delos_responsive_logo_hash
124 copy($common_logo, $responsive_logo);
131 protected function getFileHash(
string $absolute_file_path) : ?string
133 if (!file_exists($absolute_file_path)) {
137 if (
false !== ($hash = sha1_file($absolute_file_path))) {
getPreconditions(Environment $environment)
achieve(Environment $environment)
const RESPONSIVE_LOGO_PATH
An objective is a desired state of the system that is supposed to be created by the setup...
isApplicable(Environment $environment)
Get to know whether the objective is applicable.Don't change the environment or cause changes on serv...
An environment holds resources to be used in the setup process.
$delos_responsive_logo_hash
getFileHash(string $absolute_file_path)
Returns the sha1-sum of the given file if it exists.
maybeReplaceResponsiveIcon(string $skin_path)
Replaces the responsive header-icon with the common header-icon, if the common icon is different from...