ILIAS  trunk Revision v11.0_alpha-1715-g7fc467680fb
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.Agent.php
Go to the documentation of this file.
1 <?php
2 
19 namespace ILIAS\Wiki\Setup;
20 
21 use ILIAS\Setup;
24 
28 class Agent extends Setup\Agent\NullAgent
29 {
30  public function getUpdateObjective(?Setup\Config $config = null): Setup\Objective
31  {
32  return new Setup\ObjectiveCollection(
33  "Updates of Wiki",
34  false,
35  ...$this->getObjectives()
36  );
37  }
38 
39  public function getStatusObjective(Metrics\Storage $storage): Objective
40  {
41  return new \ilDatabaseUpdateStepsMetricsCollectedObjective($storage, new ilWikiDBUpdateSteps());
42  }
43 
44  protected function getObjectives(): array
45  {
46  $objectives = [];
47 
48  $objectives[] = new \ilAccessCustomRBACOperationAddedObjective(
49  "add_pages",
50  "Create Pages",
51  "object",
52  3070,
53  ["wiki"]
54  );
55 
57  "wiki",
58  "edit_content",
59  "add_pages"
60  );
61 
62 
63  // db update steps
64  $objectives[] = new \ilDatabaseUpdateStepsExecutedObjective(new ilWikiDBUpdateSteps());
65  $objectives[] = new \ilDatabaseUpdateStepsExecutedObjective(new ilWiki8HotfixDBUpdateSteps());
66 
67  return $objectives;
68  }
69 }
A objective collection is a objective that is achieved once all subobjectives are achieved...
An objective is a desired state of the system that is supposed to be created by the setup...
Definition: Objective.php:30
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getUpdateObjective(?Setup\Config $config=null)
Definition: class.Agent.php:30
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
$objectives
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
A configuration for the setup.
Definition: Config.php:26
getStatusObjective(Metrics\Storage $storage)
Definition: class.Agent.php:39