ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
Objective.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
21 namespace ILIAS\Setup;
22 
30 interface Objective
31 {
39  public function getHash(): string;
40 
44  public function getLabel(): string;
45 
49  public function isNotable(): bool;
50 
58  public function getPreconditions(Environment $environment): array;
59 
72  public function achieve(Environment $environment): Environment;
73 
81  public function isApplicable(Environment $environment): bool;
82 }
An objective is a desired state of the system that is supposed to be created by the setup...
Definition: Objective.php:30
getHash()
Get a hash for this objective.
getLabel()
Get a label that describes this objective.
isApplicable(Environment $environment)
Get to know whether the objective is applicable.
getPreconditions(Environment $environment)
Objectives might depend on other objectives.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
achieve(Environment $environment)
Objectives can be achieved.
An environment holds resources to be used in the setup process.
Definition: Environment.php:27
isNotable()
Get to know if this is an interesting objective for a human.