ILIAS  release_5-1 Revision 5.0.0-5477-g43f3e3fab5f
ilPCConsultationHoursGUI Class Reference

Class ilPCConsultationHoursGUI. More...

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

Public Member Functions

 ilPCConsultationHoursGUI ($a_pg_obj, $a_content_obj, $a_hier_id, $a_pc_id="")
 Constructor @access 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
 ilPageContentGUI ($a_pg_obj, $a_content_obj, $a_hier_id=0, $a_pc_id="")
 Constructor @access 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...
 

Additional Inherited Members

- Static Public Member Functions inherited from ilPageContentGUI
static _getCommonBBButtons ()
 Get common bb buttons. More...
 
- Data Fields inherited from ilPageContentGUI
 $content_obj
 
 $ilias
 
 $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;"
 
- Protected Attributes inherited from ilPageContentGUI
 $log
 
- 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.

Member Function Documentation

◆ create()

ilPCConsultationHoursGUI::create ( )

Create new consultation hours.

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

178 {
179 $form = $this->initForm(true);
180 if($form->checkInput())
181 {
182 $grp_ids = null;
183 $mode = $form->getInput("mode");
184 if($mode == "manual")
185 {
186 $grp_ids = $form->getInput("grp");
187 }
188
189 $this->content_obj = new ilPCConsultationHours($this->getPage());
190 $this->content_obj->create($this->pg_obj, $this->hier_id, $this->pc_id);
191 $this->content_obj->setData($mode, (array)$grp_ids);
192 $this->updated = $this->pg_obj->update();
193 if ($this->updated === true)
194 {
195 $this->ctrl->returnToParent($this, "jump".$this->hier_id);
196 }
197 }
198
199 $form->setValuesByPost();
200 return $this->insert($form);
201 }
insert(ilPropertyFormGUI $a_form=null)
Insert consultation hours form.
initForm($a_insert=false)
Init consultation hours form.
Class ilPCConsultationHours.

References ilPageContentGUI\getPage(), initForm(), and insert().

+ 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 73 of file class.ilPCConsultationHoursGUI.php.

74 {
75 global $tpl;
76
78
79 if(!$a_form)
80 {
81 $a_form = $this->initForm();
82 }
83 $tpl->setContent($a_form->getHTML());
84 }
displayValidationError()
display validation errors

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

Referenced by update().

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ executeCommand()

& ilPCConsultationHoursGUI::executeCommand ( )

execute command

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

33 {
34 // get next class that processes or forwards current command
35 $next_class = $this->ctrl->getNextClass($this);
36
37 // get current command
38 $cmd = $this->ctrl->getCmd();
39
40 switch($next_class)
41 {
42 default:
43 $ret =& $this->$cmd();
44 break;
45 }
46
47 return $ret;
48 }
$cmd
Definition: sahs_server.php:35

References $cmd, and $ret.

◆ ilPCConsultationHoursGUI()

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

Constructor @access public.

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

25 {
26 parent::ilPageContentGUI($a_pg_obj, $a_content_obj, $a_hier_id, $a_pc_id);
27 }

◆ initForm()

ilPCConsultationHoursGUI::initForm (   $a_insert = false)
protected

Init consultation hours form.

Parameters
bool$a_insert
Returns
ilPropertyFormGUI

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

93 {
94 global $ilCtrl, $ilUser, $lng;
95
96 include_once("./Services/Form/classes/class.ilPropertyFormGUI.php");
97 $form = new ilPropertyFormGUI();
98 $form->setFormAction($ilCtrl->getFormAction($this));
99 if ($a_insert)
100 {
101 $form->setTitle($this->lng->txt("cont_insert_consultation_hours"));
102 }
103 else
104 {
105 $form->setTitle($this->lng->txt("cont_update_consultation_hours"));
106 }
107
108 $mode = new ilRadioGroupInputGUI($this->lng->txt("cont_cach_mode"), "mode");
109 $mode->setRequired(true);
110 $form->addItem($mode);
111
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);
115
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);
119
120 if(!$this->getPageConfig()->getEnablePCType("PlaceHolder"))
121 {
122 include_once "Services/Calendar/classes/ConsultationHours/class.ilConsultationHourGroups.php";
124 if(sizeof($grp_ids))
125 {
126 $this->lng->loadLanguageModule("dateplaner");
127 $groups = new ilCheckboxGroupInputGUI($this->lng->txt("cal_ch_app_grp"), "grp");
128 $groups->setRequired(true);
129 $opt_manual->addSubItem($groups);
130
131 foreach($grp_ids as $grp_obj)
132 {
133 $groups->addOption(new ilCheckboxOption($grp_obj->getTitle(), $grp_obj->getGroupId()));
134 }
135 }
136 else
137 {
138 $opt_manual->setDisabled(true);
139 }
140 }
141 else
142 {
143 $opt_manual->setDisabled(true);
144 }
145
146 if ($a_insert)
147 {
148 $mode->setValue("auto");
149
150 $form->addCommandButton("create_consultation_hours", $this->lng->txt("select"));
151 $form->addCommandButton("cancelCreate", $this->lng->txt("cancel"));
152 }
153 else
154 {
155 // set values
156 $grp_ids = $this->content_obj->getGroupIds();
157 if(sizeof($grp_ids))
158 {
159 $mode->setValue("manual");
160 $groups->setValue($grp_ids);
161 }
162 else
163 {
164 $mode->setValue("auto");
165 }
166
167 $form->addCommandButton("update", $this->lng->txt("select"));
168 $form->addCommandButton("cancelUpdate", $this->lng->txt("cancel"));
169 }
170
171 return $form;
172 }
This class represents a property in a property form.
This class represents an option in a checkbox group.
static getGroupsOfUser($a_user_id)
Get a all groups of an user.
getPageConfig()
Get Page Config.
This class represents a property form user interface.
This class represents a property in a property form.
This class represents an option in a radio group.
global $ilCtrl
Definition: ilias.php:18
global $ilUser
Definition: imgupload.php:15

References $ilCtrl, $ilUser, ilPageContentGUI\$lng, ilConsultationHourGroups\getGroupsOfUser(), and ilPageContentGUI\getPageConfig().

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

+ 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 55 of file class.ilPCConsultationHoursGUI.php.

56 {
57 global $tpl;
58
60
61 if(!$a_form)
62 {
63 $a_form = $this->initForm(true);
64 }
65 $tpl->setContent($a_form->getHTML());
66 }

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

Referenced by create().

+ 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 206 of file class.ilPCConsultationHoursGUI.php.

207 {
208 $form = $this->initForm();
209 if($form->checkInput())
210 {
211 $grp_ids = array();
212 $mode = $form->getInput("mode");
213 if($mode == "manual")
214 {
215 $grp_ids = $form->getInput("grp");
216 }
217
218 $this->content_obj->setData($mode, $grp_ids);
219 $this->updated = $this->pg_obj->update();
220 if ($this->updated === true)
221 {
222 $this->ctrl->returnToParent($this, "jump".$this->hier_id);
223 }
224 }
225
226 $this->pg_obj->addHierIDs();
227 $form->setValuesByPost();
228 return $this->edit($form);
229 }
edit(ilPropertyFormGUI $a_form=null)
Edit consultation hours form.

References edit(), and initForm().

+ Here is the call graph for this function:

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