ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilDataCollectionAgent.php
Go to the documentation of this file.
1 <?php
2 
19 use ILIAS\Setup;
25 
26 class ilDataCollectionAgent implements Setup\Agent
27 {
28  public function getUpdateObjective(Config $config = null): Objective
29  {
31  }
32 
33  public function hasConfig(): bool
34  {
35  return false;
36  }
37 
39  {
40  throw new LogicException(self::class . " has no config.");
41  }
42 
43  public function getInstallObjective(Config $config = null): Objective
44  {
45  return new NullObjective();
46  }
47 
49  {
50  return new NullObjective();
51  }
52 
53  public function getStatusObjective(Storage $storage): Objective
54  {
55  return new NullObjective();
56  }
57 
58  public function getMigrations(): array
59  {
60  return [];
61  }
62 
63  public function getNamedObjectives(?Config $config = null): array
64  {
65  return [];
66  }
67 }
An objective is a desired state of the system that is supposed to be created by the setup...
Definition: Objective.php:30
if(!array_key_exists('PATH_INFO', $_SERVER)) $config
Definition: metadata.php:85
getUpdateObjective(Config $config=null)
getInstallObjective(Config $config=null)
A non-objective, nothing to do to achieve it...
getNamedObjectives(?Config $config=null)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
A transformation is a function from one datatype to another.
A configuration for the setup.
Definition: Config.php:26
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...