23 public function __construct($a_pg_obj, $a_content_obj, $a_hier_id, $a_pc_id =
"")
27 $this->tpl = $DIC[
"tpl"];
28 $this->ctrl = $DIC->ctrl();
29 $this->
user = $DIC->user();
30 $this->lng = $DIC->language();
40 $next_class = $this->ctrl->getNextClass($this);
43 $cmd = $this->ctrl->getCmd();
45 switch ($next_class) {
47 $ret = &$this->$cmd();
68 $tpl->setContent($a_form->getHTML());
85 $tpl->setContent($a_form->getHTML());
101 $form->setFormAction(
$ilCtrl->getFormAction($this));
103 $form->setTitle($this->lng->txt(
"cont_insert_consultation_hours"));
105 $form->setTitle($this->lng->txt(
"cont_update_consultation_hours"));
110 $form->addItem($mode);
112 $opt_auto =
new ilRadioOption($this->lng->txt(
"cont_cach_mode_automatic"),
"auto");
113 $opt_auto->
setInfo($this->lng->txt(
"cont_cach_mode_automatic_info"));
114 $mode->addOption($opt_auto);
116 $opt_manual =
new ilRadioOption($this->lng->txt(
"cont_cach_mode_manual"),
"manual");
117 $opt_manual->
setInfo($this->lng->txt(
"cont_cach_mode_manual_info"));
118 $mode->addOption($opt_manual);
120 if (!$this->
getPageConfig()->getEnablePCType(
"PlaceHolder")) {
122 if (
sizeof($grp_ids)) {
123 $this->lng->loadLanguageModule(
"dateplaner");
126 $opt_manual->addSubItem($groups);
128 foreach ($grp_ids as $grp_obj) {
129 $groups->addOption(
new ilCheckboxOption($grp_obj->getTitle(), $grp_obj->getGroupId()));
132 $opt_manual->setDisabled(
true);
135 $opt_manual->setDisabled(
true);
139 $mode->setValue(
"auto");
141 $form->addCommandButton(
"create_consultation_hours", $this->lng->txt(
"select"));
142 $form->addCommandButton(
"cancelCreate", $this->lng->txt(
"cancel"));
145 $grp_ids = $this->content_obj->getGroupIds();
146 if (
sizeof($grp_ids)) {
147 $mode->setValue(
"manual");
148 $groups->setValue($grp_ids);
150 $mode->setValue(
"auto");
153 $form->addCommandButton(
"update", $this->lng->txt(
"select"));
154 $form->addCommandButton(
"cancelUpdate", $this->lng->txt(
"cancel"));
166 if ($form->checkInput()) {
168 $mode = $form->getInput(
"mode");
169 if ($mode ==
"manual") {
170 $grp_ids = $form->getInput(
"grp");
174 $this->content_obj->create($this->pg_obj, $this->hier_id, $this->pc_id);
175 $this->content_obj->setData($mode, (array) $grp_ids);
176 $this->updated = $this->pg_obj->update();
177 if ($this->updated ===
true) {
178 $this->ctrl->returnToParent($this,
"jump" . $this->hier_id);
182 $form->setValuesByPost();
183 return $this->
insert($form);
192 if ($form->checkInput()) {
194 $mode = $form->getInput(
"mode");
195 if ($mode ==
"manual") {
196 $grp_ids = $form->getInput(
"grp");
199 $this->content_obj->setData($mode, $grp_ids);
200 $this->updated = $this->pg_obj->update();
201 if ($this->updated ===
true) {
202 $this->ctrl->returnToParent($this,
"jump" . $this->hier_id);
206 $this->pg_obj->addHierIDs();
207 $form->setValuesByPost();
208 return $this->
edit($form);
__construct($a_pg_obj, $a_content_obj, $a_hier_id, $a_pc_id="")
Constructor public.
This class represents an option in a radio group.
This class represents an option in a checkbox group.
insert(ilPropertyFormGUI $a_form=null)
Insert consultation hours form.
Class ilPCConsultationHours.
getPageConfig()
Get Page Config.
setInfo($a_info)
Set Info.
initForm($a_insert=false)
Init consultation hours form.
update()
Update consultation hours.
static getGroupsOfUser($a_user_id)
Get a all groups of an user.
User Interface for Editing of Page Content Objects (Paragraphs, Tables, ...)
displayValidationError()
display validation errors
Class ilPCConsultationHoursGUI.
edit(ilPropertyFormGUI $a_form=null)
Edit consultation hours form.
create()
Create new consultation hours.
__construct(Container $dic, ilPlugin $plugin)
executeCommand()
execute command