ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilPCMyCoursesGUI.php
Go to the documentation of this file.
1 <?php
2 
24 {
25  public function __construct(
26  ilPageObject $a_pg_obj,
27  ?ilPageContent $a_content_obj,
28  string $a_hier_id,
29  string $a_pc_id = ""
30  ) {
31  global $DIC;
32 
33  $this->tpl = $DIC["tpl"];
34  $this->ctrl = $DIC->ctrl();
35  parent::__construct($a_pg_obj, $a_content_obj, $a_hier_id, $a_pc_id);
36  }
37 
38  public function executeCommand(): void
39  {
40  // get next class that processes or forwards current command
41  $next_class = $this->ctrl->getNextClass($this);
42 
43  // get current command
44  $cmd = $this->ctrl->getCmd();
45 
46  switch ($next_class) {
47  default:
48  $this->$cmd();
49  break;
50  }
51  }
52 
53  public function insert(ilPropertyFormGUI $a_form = null): void
54  {
55  $tpl = $this->tpl;
56 
57  /* #12816 - no form needed yet
58  $this->create();
59  */
60 
61  $this->displayValidationError();
62 
63  if (!$a_form) {
64  $a_form = $this->initForm(true);
65  }
66  $tpl->setContent($a_form->getHTML());
67  }
68 
69  public function edit(ilPropertyFormGUI $a_form = null): void
70  {
71  $tpl = $this->tpl;
72 
73  $this->displayValidationError();
74 
75  if (!$a_form) {
76  $a_form = $this->initForm();
77  }
78  $tpl->setContent($a_form->getHTML());
79  }
80 
81  protected function initForm($a_insert = false): ilPropertyFormGUI
82  {
83  $ilCtrl = $this->ctrl;
84 
85  $form = new ilPropertyFormGUI();
86  $form->setFormAction($ilCtrl->getFormAction($this));
87  if ($a_insert) {
88  $form->setTitle($this->lng->txt("cont_insert_my_courses"));
89  } else {
90  $form->setTitle($this->lng->txt("cont_update_my_courses"));
91  }
92 
93  $sort = new ilRadioGroupInputGUI($this->lng->txt("cont_mycourses_sortorder"), "sort");
94  $sort->setInfo($this->lng->txt("cont_mycourses_sortorder_info")); //#15511
95  $sort->setRequired(true);
96  $form->addItem($sort);
97 
98  $sort->addOption(new ilRadioOption($this->lng->txt("cont_mycourses_sortorder_alphabetical"), "alpha"));
99  $sort->addOption(new ilRadioOption($this->lng->txt("cont_mycourses_sortorder_location"), "loc"));
100 
101  if ($a_insert) {
102  $sort->setValue("alpha");
103 
104  $form->addCommandButton("create_my_courses", $this->lng->txt("save"));
105  $form->addCommandButton("cancelCreate", $this->lng->txt("cancel"));
106  } else {
107  $sort->setValue($this->content_obj->getSorting());
108 
109  $form->addCommandButton("update", $this->lng->txt("save"));
110  $form->addCommandButton("cancelUpdate", $this->lng->txt("cancel"));
111  }
112 
113  return $form;
114  }
115 
116  public function create(): void
117  {
118  $form = $this->initForm(true);
119  if ($form->checkInput()) {
120  $sort = $form->getInput("sort");
121 
122  $this->content_obj = new ilPCMyCourses($this->getPage());
123  $this->content_obj->create($this->pg_obj, $this->hier_id, $this->pc_id);
124  $this->content_obj->setData($sort);
125  $this->updated = $this->pg_obj->update();
126  if ($this->updated === true) {
127  $this->ctrl->returnToParent($this, "jump" . $this->hier_id);
128  }
129  }
130 
131  $form->setValuesByPost();
132  $this->insert($form);
133  }
134 
135  public function update(): void
136  {
137  $form = $this->initForm();
138  if ($form->checkInput()) {
139  $sort = $form->getInput("sort");
140  $this->content_obj->setData($sort);
141  $this->updated = $this->pg_obj->update();
142  if ($this->updated === true) {
143  $this->ctrl->returnToParent($this, "jump" . $this->hier_id);
144  }
145  }
146 
147  $this->pg_obj->addHierIDs();
148  $form->setValuesByPost();
149  $this->edit($form);
150  }
151 }
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
initForm($a_insert=false)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
global $DIC
Definition: feed.php:28
User Interface for Editing of Page Content Objects (Paragraphs, Tables, ...)
This class represents a property in a property form.
setContent(string $a_html)
Sets content for standard template.
Class ilPageObject Handles PageObjects of ILIAS Learning Modules (see ILIAS DTD)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
ilGlobalTemplateInterface $tpl
__construct(ilPageObject $a_pg_obj, ?ilPageContent $a_content_obj, string $a_hier_id, string $a_pc_id="")
edit(ilPropertyFormGUI $a_form=null)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
__construct(Container $dic, ilPlugin $plugin)
insert(ilPropertyFormGUI $a_form=null)