19 declare(strict_types=1);
44 $this->ui_factory = $DIC[
'ui.factory'];
45 $this->ui_renderer = $DIC[
'ui.renderer'];
46 $this->
lng = $DIC[
'lng'];
52 new ProfileMode($this->
lng, $DIC[
'ilSetting'], $DIC[
'ilUser'])
56 public function render(
int $active_step): string
59 $workflow_factory = $this->ui_factory->listing()->workflow();
65 foreach ($this->status->getSteps() as $step =>
$txt) {
66 if ($step == $active_step) {
67 $active_step_nr = $cnt;
76 $wf = $workflow_factory->linear($this->
lng->txt(
"user_privacy_checklist"), $steps)
77 ->withActive($active_step_nr);
80 return $this->ui_renderer->render($wf);
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;
Personal profile publishing mode of a user.
getStatusDetails(int $step)
getUIChecklistStatus(int $check_list_status)
Get ui checklist status.
__construct(Container $dic, ilPlugin $plugin)