ILIAS  release_8 Revision v8.24
class.ilDataCollectionAgent.php
Go to the documentation of this file.
1<?php
2
19use ILIAS\Setup;
25
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
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}
A non-objective, nothing to do to achieve it...
getNamedObjectives(?Config $config=null)
getInstallObjective(Config $config=null)
getUpdateObjective(Config $config=null)
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 agent is some component that performs part of the setup process.
Definition: Agent.php:30
A configuration for the setup.
Definition: Config.php:27
An objective is a desired state of the system that is supposed to be created by the setup.
Definition: Objective.php:31
if(!array_key_exists('PATH_INFO', $_SERVER)) $config
Definition: metadata.php:85
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...