ILIAS  release_9 Revision v9.13-25-g2c18ec4c24f
class.ilTestQuestionPoolSetupAgent.php
Go to the documentation of this file.
1 <?php
2 
24 
26 {
27  public function getUpdateObjective(ILIAS\Setup\Config $config = null): ILIAS\Setup\Objective
28  {
29  return new ObjectiveCollection(
30  'Database is updated for Module/TestQuestionPool',
31  false,
34  ),
37  )
38  );
39  }
40 
41  public function getStatusObjective(Metrics\Storage $storage): Objective
42  {
43  return new ObjectiveCollection(
44  'Module/TestQuestionPool',
45  true,
47  $storage,
49  ),
51  $storage,
53  )
54  );
55  }
56 
57  public function getMigrations(): array
58  {
59  return [
62  ];
63  }
64 
65 }
A objective collection is a objective that is achieved once all subobjectives are achieved...
An agent that just doesn&#39;t do a thing.
Definition: NullAgent.php:34
An objective is a desired state of the system that is supposed to be created by the setup...
Definition: Objective.php:30
Class ChatMainBarProvider .
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...
getUpdateObjective(ILIAS\Setup\Config $config=null)
getMigrations()
Get a named map of migrations available for this Agent.
A configuration for the setup.
Definition: Config.php:26