ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
ilFileObjectSettingsUpdatedObjective Class Reference
+ Inheritance diagram for ilFileObjectSettingsUpdatedObjective:
+ Collaboration diagram for ilFileObjectSettingsUpdatedObjective:

Public Member Functions

 getHash ()
 Get a hash for this objective. More...
 
 getLabel ()
 Get a label that describes this objective. More...
 
 isNotable ()
 Get to know if this is an interesting objective for a human. More...
 
 getPreconditions (Environment $environment)
 Objectives might depend on other objectives. More...
 
- Public Member Functions inherited from ILIAS\Setup\Objective
 achieve (Environment $environment)
 Objectives can be achieved. More...
 
 isApplicable (Environment $environment)
 Get to know whether the objective is applicable. More...
 

Detailed Description

Member Function Documentation

◆ getHash()

ilFileObjectSettingsUpdatedObjective::getHash ( )

Get a hash for this objective.

The hash of two objectives must be the same, if they are the same objective, with the same config on the same environment, i.e. if the one is achieved the other is achieved as well because they are the same.

Implements ILIAS\Setup\Objective.

Definition at line 24 of file class.ilFileObjectSettingsUpdatedObjective.php.

24  : string
25  {
26  return hash(
27  "sha256",
28  static::class
29  );
30  }

◆ getLabel()

ilFileObjectSettingsUpdatedObjective::getLabel ( )

Get a label that describes this objective.

Implements ILIAS\Setup\Objective.

Definition at line 32 of file class.ilFileObjectSettingsUpdatedObjective.php.

32  : string
33  {
34  return "File Object Settings have been updated.";
35  }

◆ getPreconditions()

ilFileObjectSettingsUpdatedObjective::getPreconditions ( Environment  $environment)

Objectives might depend on other objectives.

Exceptions
UnachievableExceptionif the objective is not achievable
Returns
Objective[]

Implements ILIAS\Setup\Objective.

Definition at line 42 of file class.ilFileObjectSettingsUpdatedObjective.php.

References ILIAS\Setup\Objective\achieve(), ILIAS\Setup\Environment\getResource(), and ILIAS\Setup\Objective\isApplicable().

42  : array
43  {
44  return [
47  ];
48  }
+ Here is the call graph for this function:

◆ isNotable()

ilFileObjectSettingsUpdatedObjective::isNotable ( )

Get to know if this is an interesting objective for a human.

Implements ILIAS\Setup\Objective.

Definition at line 37 of file class.ilFileObjectSettingsUpdatedObjective.php.

37  : bool
38  {
39  return false;
40  }

The documentation for this class was generated from the following file: