ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilRadiusConfigRemovedObjective.php
Go to the documentation of this file.
1 <?php
2 
3 declare(strict_types=1);
20 use ILIAS\Setup;
21 
25 class ilRadiusConfigRemovedObjective implements Setup\Objective
26 {
27  public function getHash(): string
28  {
29  return hash("sha256", self::class);
30  }
31 
32  public function getLabel(): string
33  {
34  return "Remove settings from Radius Server";
35  }
36 
37  public function isNotable(): bool
38  {
39  return true;
40  }
41 
42  public function getPreconditions(Setup\Environment $environment): array
43  {
44  return [
45  new \ilIniFilesPopulatedObjective(),
46  new \ilSettingsFactoryExistsObjective()
47  ];
48  }
49 
50  public function achieve(Setup\Environment $environment): Setup\Environment
51  {
52  $factory = $environment->getResource(Setup\Environment::RESOURCE_SETTINGS_FACTORY);
54  $settings = $factory->settingsFor("common");
55  $settings->deleteLike("radius_%");
56 
57  return $environment;
58  }
59 
63  public function isApplicable(Setup\Environment $environment): bool
64  {
65  return true;
66  }
67 }
array $settings
Setting values (LTI parameters, custom parameters and local parameters).
Definition: System.php:200
getPreconditions(Setup\Environment $environment)
Remove stored information of Radius.
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.
Definition: Environment.php:27
$factory
Definition: metadata.php:75