ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilDataCollectionObjective.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
23 
25 {
28 
29  public function __construct(ilDatabaseUpdateSteps $steps)
30  {
31  if ($steps instanceof ilDataCollectionDBUpdateSteps9) {
32  parent::__construct($steps);
33  } else {
34  throw new InvalidArgumentException('$steps must be instance of ilDataCollectionDBUpdateSteps9');
35  }
36  }
37 
38  public function getPreconditions(Environment $environment): array
39  {
40  return array_merge(
41  parent::getPreconditions($environment),
42  [
45  ]
46  );
47  }
48 
49  public function achieve(Environment $environment): Environment
50  {
51  global $DIC;
52  $DIC = new Container();
53  $DIC['lng'] = new ilSetupLanguage('en');
54  $DIC['ilDB'] = $environment->getResource(Environment::RESOURCE_DATABASE);
55  $DIC['component.factory'] = $environment->getResource(Environment::RESOURCE_COMPONENT_FACTORY);
56  $DIC['component.repository'] = $environment->getResource(Environment::RESOURCE_COMPONENT_REPOSITORY);
57  return parent::achieve($environment);
58  }
59 }
__construct(ilDatabaseUpdateSteps $steps)
getPreconditions(Environment $environment)
Objectives might depend on other objectives.
language handling for setup
Customizing of pimple-DIC for ILIAS.
Definition: Container.php:35
global $DIC
Definition: shib_login.php:22
getResource(string $id)
Consumers of this method should check if the result is what they expect, e.g.
achieve(Environment $environment)
Objectives can be achieved.
An environment holds resources to be used in the setup process.
Definition: Environment.php:27
__construct(Container $dic, ilPlugin $plugin)