18 public function __construct($a_pg_obj, $a_content_obj, $a_hier_id, $a_pc_id =
"")
22 $this->tpl = $DIC[
"tpl"];
23 $this->ctrl = $DIC->ctrl();
33 $next_class = $this->ctrl->getNextClass($this);
36 $cmd = $this->ctrl->getCmd();
38 switch ($next_class) {
40 $ret = &$this->$cmd();
65 $tpl->setContent($a_form->getHTML());
82 $tpl->setContent($a_form->getHTML());
96 $form->setFormAction(
$ilCtrl->getFormAction($this));
98 $form->setTitle($this->lng->txt(
"cont_insert_my_courses"));
100 $form->setTitle($this->lng->txt(
"cont_update_my_courses"));
104 $sort->
setInfo($this->lng->txt(
"cont_mycourses_sortorder_info"));
105 $sort->setRequired(
true);
106 $form->addItem($sort);
108 $sort->addOption(
new ilRadioOption($this->lng->txt(
"cont_mycourses_sortorder_alphabetical"),
"alpha"));
109 $sort->addOption(
new ilRadioOption($this->lng->txt(
"cont_mycourses_sortorder_location"),
"loc"));
112 $sort->setValue(
"alpha");
114 $form->addCommandButton(
"create_my_courses", $this->lng->txt(
"save"));
115 $form->addCommandButton(
"cancelCreate", $this->lng->txt(
"cancel"));
117 $sort->setValue($this->content_obj->getSorting());
119 $form->addCommandButton(
"update", $this->lng->txt(
"save"));
120 $form->addCommandButton(
"cancelUpdate", $this->lng->txt(
"cancel"));
132 if ($form->checkInput()) {
133 $sort = $form->getInput(
"sort");
136 $this->content_obj->create($this->pg_obj, $this->hier_id, $this->pc_id);
137 $this->content_obj->setData($sort);
138 $this->updated = $this->pg_obj->update();
139 if ($this->updated ===
true) {
140 $this->ctrl->returnToParent($this,
"jump" . $this->hier_id);
144 $form->setValuesByPost();
145 return $this->
insert($form);
154 if ($form->checkInput()) {
155 $sort = $form->getInput(
"sort");
157 $this->content_obj->setData($sort);
158 $this->updated = $this->pg_obj->update();
159 if ($this->updated ===
true) {
160 $this->ctrl->returnToParent($this,
"jump" . $this->hier_id);
164 $this->pg_obj->addHierIDs();
165 $form->setValuesByPost();
166 return $this->
edit($form);
This class represents an option in a radio group.
create()
Create new courses.
initForm($a_insert=false)
Init courses form.
executeCommand()
execute command
User Interface for Editing of Page Content Objects (Paragraphs, Tables, ...)
displayValidationError()
display validation errors
edit(ilPropertyFormGUI $a_form=null)
Edit courses form.
__construct(Container $dic, ilPlugin $plugin)
__construct($a_pg_obj, $a_content_obj, $a_hier_id, $a_pc_id="")
Constructor public.
insert(ilPropertyFormGUI $a_form=null)
Insert courses form.