ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilProfileChecklistGUI.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 use ILIAS\User\Profile\Mode as ProfileMode;
23 
28 
33 {
37  protected Language $lng;
38 
39  public function __construct()
40  {
42  global $DIC;
43 
44  $this->ui_factory = $DIC['ui.factory'];
45  $this->ui_renderer = $DIC['ui.renderer'];
46  $this->lng = $DIC['lng'];
47 
48  $this->status = new ChecklistStatus(
49  $this->lng,
50  $DIC['ilSetting'],
51  $DIC['ilUser'],
52  new ProfileMode($this->lng, $DIC['ilSetting'], $DIC['ilUser'])
53  );
54  }
55 
56  public function render(int $active_step): string
57  {
58  $active_step_nr = 0;
59  $workflow_factory = $this->ui_factory->listing()->workflow();
60  $status = $this->status;
61 
62  //setup steps
63  $steps = [];
64  $cnt = 0;
65  foreach ($this->status->getSteps() as $step => $txt) {
66  if ($step == $active_step) {
67  $active_step_nr = $cnt;
68  }
69  $cnt++;
70  $s = $workflow_factory->step($txt, $status->getStatusDetails($step))
71  ->withStatus($this->getUIChecklistStatus($status->getStatus($step)));
72  $steps[] = $s;
73  }
74 
75  //setup linear workflow
76  $wf = $workflow_factory->linear($this->lng->txt("user_privacy_checklist"), $steps)
77  ->withActive($active_step_nr);
78 
79  //render
80  return $this->ui_renderer->render($wf);
81  }
82 
86  protected function getUIChecklistStatus(int $check_list_status): int
87  {
88  switch ($check_list_status) {
89  case ChecklistStatus::STATUS_NOT_STARTED: return Step::NOT_STARTED;
90  case ChecklistStatus::STATUS_IN_PROGRESS: return Step::IN_PROGRESS;
91  case ChecklistStatus::STATUS_SUCCESSFUL: return Step::SUCCESSFULLY;
92  }
93  return 0;
94  }
95 }
Personal profile publishing mode of a user.
Definition: Mode.php:29
getUIChecklistStatus(int $check_list_status)
Get ui checklist status.
global $DIC
Definition: shib_login.php:22
$txt
Definition: error.php:31
__construct(Container $dic, ilPlugin $plugin)