ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilRegistrationConfigUpdateObjective.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
21 use ILIAS\Setup;
22 
26 class ilRegistrationConfigUpdateObjective implements Setup\Objective
27 {
28  public function getHash(): string
29  {
30  return hash("sha256", self::class);
31  }
32 
33  public function getLabel(): string
34  {
35  return "Fix userid encoding in Registration settings";
36  }
37 
38  public function isNotable(): bool
39  {
40  return true;
41  }
42 
43  public function getPreconditions(Setup\Environment $environment): array
44  {
45  return [
46  new \ilIniFilesPopulatedObjective(),
47  new \ilSettingsFactoryExistsObjective()
48  ];
49  }
50 
51  public function achieve(Setup\Environment $environment): Setup\Environment
52  {
53  $factory = $environment->getResource(Setup\Environment::RESOURCE_SETTINGS_FACTORY);
55  $settings = $factory->settingsFor("common");
56  $approve_recipient_ids = [];
57  foreach (unserialize(
58  stripslashes($settings->get('approve_recipient', '')),
59  ['allowed_classes' => false]
60  ) ?: [] as $id) {
61  $approve_recipient_ids[] = (int) $id;
62  }
63  $settings->set('approve_recipient', addslashes(serialize($approve_recipient_ids)));
64  return $environment;
65  }
66 
70  public function isApplicable(Setup\Environment $environment): bool
71  {
72  return true;
73  }
74 }
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
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
Definition: plugin.php:23