ILIAS  release_5-3 Revision v5.3.23-19-g915713cf615
ilPCConsultationHoursGUI Class Reference

Class ilPCConsultationHoursGUI. More...

+ Inheritance diagram for ilPCConsultationHoursGUI:
+ Collaboration diagram for ilPCConsultationHoursGUI:

Public Member Functions

 __construct ($a_pg_obj, $a_content_obj, $a_hier_id, $a_pc_id="")
 Constructor public. More...
 
 executeCommand ()
 execute command More...
 
 insert (ilPropertyFormGUI $a_form=null)
 Insert consultation hours form. More...
 
 edit (ilPropertyFormGUI $a_form=null)
 Edit consultation hours form. More...
 
 create ()
 Create new consultation hours. More...
 
 update ()
 Update consultation hours. More...
 
- Public Member Functions inherited from ilPageContentGUI
 __construct ($a_pg_obj, $a_content_obj, $a_hier_id=0, $a_pc_id="")
 Constructor public. More...
 
 setContentObject ($a_val)
 Set content object. More...
 
 getContentObject ()
 Get content object. More...
 
 setPage ($a_val)
 Set page. More...
 
 getPage ()
 Get page. More...
 
 setPageConfig ($a_val)
 Set Page Config. More...
 
 getPageConfig ()
 Get Page Config. More...
 
 setStyleId ($a_styleid)
 Set Style Id. More...
 
 getStyleId ()
 Get Style Id. More...
 
 getStyle ()
 Get style object. More...
 
 setCharacteristics ($a_chars)
 Set Characteristics. More...
 
 getCharacteristics ()
 Get characteristics. More...
 
 getHierId ()
 get hierarchical id in dom object More...
 
 setHierId ($a_hier_id)
 get hierarchical id in dom object More...
 
 getBBMenu ($a_ta_name="par_content")
 Get the bb menu incl. More...
 
 delete ()
 delete content element More...
 
 moveAfter ()
 move content element after another element More...
 
 moveBefore ()
 move content element before another element More...
 
 splitPage ()
 split page to new page at specified position More...
 
 splitPageNext ()
 split page to next page at specified position More...
 
 displayValidationError ()
 display validation errors More...
 
 cancelCreate ()
 cancel creating page content More...
 
 cancelUpdate ()
 cancel update More...
 
 cancel ()
 Cancel. More...
 
 deactivate ()
 gui function set enabled if is not enabled and vice versa More...
 
 cut ()
 Cut single element. More...
 
 copy ()
 Copy single element. More...
 
 getTemplateOptions ($a_type)
 Get table templates. More...
 

Protected Member Functions

 initForm ($a_insert=false)
 Init consultation hours form. More...
 
- Protected Member Functions inherited from ilPageContentGUI
 getCharacteristicsOfCurrentStyle ($a_type)
 Get characteristics of current style. More...
 

Protected Attributes

 $user
 
- Protected Attributes inherited from ilPageContentGUI
 $error
 
 $log
 

Additional Inherited Members

- Static Public Member Functions inherited from ilPageContentGUI
static _getCommonBBButtons ()
 Get common bb buttons. More...
 
- Data Fields inherited from ilPageContentGUI
 $content_obj
 
 $tpl
 
 $lng
 
 $ctrl
 
 $pg_obj
 
 $hier_id
 
 $dom
 
 $updated
 
 $target_script
 
 $return_location
 
 $page_config = null
 
- Static Public Attributes inherited from ilPageContentGUI
static $style_selector_reset = "margin-top:2px; margin-bottom:2px; text-indent:0px; position:static; float:none; width: auto;"
 
- Static Protected Attributes inherited from ilPageContentGUI
static $common_bb_buttons
 

Detailed Description

Class ilPCConsultationHoursGUI.

Handles user commands on consultation hour data

Author
Jörg Lützenkirchen luetz.nosp@m.enki.nosp@m.rchen.nosp@m.@lei.nosp@m.fos.c.nosp@m.om
Version
$I$

Definition at line 18 of file class.ilPCConsultationHoursGUI.php.

Constructor & Destructor Documentation

◆ __construct()

ilPCConsultationHoursGUI::__construct (   $a_pg_obj,
  $a_content_obj,
  $a_hier_id,
  $a_pc_id = "" 
)

Constructor public.

Definition at line 29 of file class.ilPCConsultationHoursGUI.php.

References $DIC, and user().

30  {
31  global $DIC;
32 
33  $this->tpl = $DIC["tpl"];
34  $this->ctrl = $DIC->ctrl();
35  $this->user = $DIC->user();
36  $this->lng = $DIC->language();
37  parent::__construct($a_pg_obj, $a_content_obj, $a_hier_id, $a_pc_id);
38  }
global $DIC
Definition: saml.php:7
user()
Definition: user.php:4
+ Here is the call graph for this function:

Member Function Documentation

◆ create()

ilPCConsultationHoursGUI::create ( )

Create new consultation hours.

Definition at line 171 of file class.ilPCConsultationHoursGUI.php.

References $form, array, ilPageContentGUI\getPage(), initForm(), and insert().

172  {
173  $form = $this->initForm(true);
174  if ($form->checkInput()) {
175  $grp_ids = null;
176  $mode = $form->getInput("mode");
177  if ($mode == "manual") {
178  $grp_ids = $form->getInput("grp");
179  }
180 
181  $this->content_obj = new ilPCConsultationHours($this->getPage());
182  $this->content_obj->create($this->pg_obj, $this->hier_id, $this->pc_id);
183  $this->content_obj->setData($mode, (array) $grp_ids);
184  $this->updated = $this->pg_obj->update();
185  if ($this->updated === true) {
186  $this->ctrl->returnToParent($this, "jump" . $this->hier_id);
187  }
188  }
189 
190  $form->setValuesByPost();
191  return $this->insert($form);
192  }
insert(ilPropertyFormGUI $a_form=null)
Insert consultation hours form.
Class ilPCConsultationHours.
initForm($a_insert=false)
Init consultation hours form.
if(isset($_POST['submit'])) $form
Create styles array
The data for the language used.
+ Here is the call graph for this function:

◆ edit()

ilPCConsultationHoursGUI::edit ( ilPropertyFormGUI  $a_form = null)

Edit consultation hours form.

Parameters
ilPropertyFormGUI$a_form

Definition at line 82 of file class.ilPCConsultationHoursGUI.php.

References ilPageContentGUI\$tpl, ilPageContentGUI\displayValidationError(), and initForm().

Referenced by update().

83  {
84  $tpl = $this->tpl;
85 
86  $this->displayValidationError();
87 
88  if (!$a_form) {
89  $a_form = $this->initForm();
90  }
91  $tpl->setContent($a_form->getHTML());
92  }
initForm($a_insert=false)
Init consultation hours form.
displayValidationError()
display validation errors
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ executeCommand()

ilPCConsultationHoursGUI::executeCommand ( )

execute command

Definition at line 43 of file class.ilPCConsultationHoursGUI.php.

References $ret.

44  {
45  // get next class that processes or forwards current command
46  $next_class = $this->ctrl->getNextClass($this);
47 
48  // get current command
49  $cmd = $this->ctrl->getCmd();
50 
51  switch ($next_class) {
52  default:
53  $ret =&$this->$cmd();
54  break;
55  }
56 
57  return $ret;
58  }
$ret
Definition: parser.php:6

◆ initForm()

ilPCConsultationHoursGUI::initForm (   $a_insert = false)
protected

Init consultation hours form.

Parameters
bool$a_insert
Returns
ilPropertyFormGUI

Definition at line 100 of file class.ilPCConsultationHoursGUI.php.

References ilPageContentGUI\$ctrl, $form, $ilCtrl, $ilUser, ilPageContentGUI\$lng, $user, ilConsultationHourGroups\getGroupsOfUser(), ilPageContentGUI\getPageConfig(), ilRadioOption\setInfo(), and ilFormPropertyGUI\setRequired().

Referenced by create(), edit(), insert(), and update().

101  {
104  $lng = $this->lng;
105 
106  include_once("./Services/Form/classes/class.ilPropertyFormGUI.php");
107  $form = new ilPropertyFormGUI();
108  $form->setFormAction($ilCtrl->getFormAction($this));
109  if ($a_insert) {
110  $form->setTitle($this->lng->txt("cont_insert_consultation_hours"));
111  } else {
112  $form->setTitle($this->lng->txt("cont_update_consultation_hours"));
113  }
114 
115  $mode = new ilRadioGroupInputGUI($this->lng->txt("cont_cach_mode"), "mode");
116  $mode->setRequired(true);
117  $form->addItem($mode);
118 
119  $opt_auto = new ilRadioOption($this->lng->txt("cont_cach_mode_automatic"), "auto");
120  $opt_auto->setInfo($this->lng->txt("cont_cach_mode_automatic_info"));
121  $mode->addOption($opt_auto);
122 
123  $opt_manual = new ilRadioOption($this->lng->txt("cont_cach_mode_manual"), "manual");
124  $opt_manual->setInfo($this->lng->txt("cont_cach_mode_manual_info"));
125  $mode->addOption($opt_manual);
126 
127  if (!$this->getPageConfig()->getEnablePCType("PlaceHolder")) {
128  include_once "Services/Calendar/classes/ConsultationHours/class.ilConsultationHourGroups.php";
130  if (sizeof($grp_ids)) {
131  $this->lng->loadLanguageModule("dateplaner");
132  $groups = new ilCheckboxGroupInputGUI($this->lng->txt("cal_ch_app_grp"), "grp");
133  $groups->setRequired(true);
134  $opt_manual->addSubItem($groups);
135 
136  foreach ($grp_ids as $grp_obj) {
137  $groups->addOption(new ilCheckboxOption($grp_obj->getTitle(), $grp_obj->getGroupId()));
138  }
139  } else {
140  $opt_manual->setDisabled(true);
141  }
142  } else {
143  $opt_manual->setDisabled(true);
144  }
145 
146  if ($a_insert) {
147  $mode->setValue("auto");
148 
149  $form->addCommandButton("create_consultation_hours", $this->lng->txt("select"));
150  $form->addCommandButton("cancelCreate", $this->lng->txt("cancel"));
151  } else {
152  // set values
153  $grp_ids = $this->content_obj->getGroupIds();
154  if (sizeof($grp_ids)) {
155  $mode->setValue("manual");
156  $groups->setValue($grp_ids);
157  } else {
158  $mode->setValue("auto");
159  }
160 
161  $form->addCommandButton("update", $this->lng->txt("select"));
162  $form->addCommandButton("cancelUpdate", $this->lng->txt("cancel"));
163  }
164 
165  return $form;
166  }
This class represents an option in a radio group.
This class represents an option in a checkbox group.
This class represents a property form user interface.
getPageConfig()
Get Page Config.
setInfo($a_info)
Set Info.
global $ilCtrl
Definition: ilias.php:18
static getGroupsOfUser($a_user_id)
Get a all groups of an user.
This class represents a property in a property form.
if(isset($_POST['submit'])) $form
$ilUser
Definition: imgupload.php:18
This class represents a property in a property form.
setRequired($a_required)
Set Required.
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ insert()

ilPCConsultationHoursGUI::insert ( ilPropertyFormGUI  $a_form = null)

Insert consultation hours form.

Parameters
ilPropertyFormGUI$a_form

Definition at line 65 of file class.ilPCConsultationHoursGUI.php.

References ilPageContentGUI\$tpl, ilPageContentGUI\displayValidationError(), and initForm().

Referenced by create().

66  {
67  $tpl = $this->tpl;
68 
69  $this->displayValidationError();
70 
71  if (!$a_form) {
72  $a_form = $this->initForm(true);
73  }
74  $tpl->setContent($a_form->getHTML());
75  }
initForm($a_insert=false)
Init consultation hours form.
displayValidationError()
display validation errors
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ update()

ilPCConsultationHoursGUI::update ( )

Update consultation hours.

Definition at line 197 of file class.ilPCConsultationHoursGUI.php.

References $form, array, edit(), and initForm().

198  {
199  $form = $this->initForm();
200  if ($form->checkInput()) {
201  $grp_ids = array();
202  $mode = $form->getInput("mode");
203  if ($mode == "manual") {
204  $grp_ids = $form->getInput("grp");
205  }
206 
207  $this->content_obj->setData($mode, $grp_ids);
208  $this->updated = $this->pg_obj->update();
209  if ($this->updated === true) {
210  $this->ctrl->returnToParent($this, "jump" . $this->hier_id);
211  }
212  }
213 
214  $this->pg_obj->addHierIDs();
215  $form->setValuesByPost();
216  return $this->edit($form);
217  }
initForm($a_insert=false)
Init consultation hours form.
if(isset($_POST['submit'])) $form
Create styles array
The data for the language used.
edit(ilPropertyFormGUI $a_form=null)
Edit consultation hours form.
+ Here is the call graph for this function:

Field Documentation

◆ $user

ilPCConsultationHoursGUI::$user
protected

Definition at line 23 of file class.ilPCConsultationHoursGUI.php.

Referenced by initForm().


The documentation for this class was generated from the following file: