ILIAS  release_6 Revision v6.24-5-g0c8bfefb3b8
All Data Structures Namespaces Files Functions Variables Modules Pages
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

Definition at line 12 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 23 of file class.ilPCConsultationHoursGUI.php.

References $DIC, ILIAS\GlobalScreen\Provider\__construct(), and user().

24  {
25  global $DIC;
26 
27  $this->tpl = $DIC["tpl"];
28  $this->ctrl = $DIC->ctrl();
29  $this->user = $DIC->user();
30  $this->lng = $DIC->language();
31  parent::__construct($a_pg_obj, $a_content_obj, $a_hier_id, $a_pc_id);
32  }
user()
Definition: user.php:4
__construct(Container $dic, ilPlugin $plugin)
$DIC
Definition: xapitoken.php:46
+ Here is the call graph for this function:

Member Function Documentation

◆ create()

ilPCConsultationHoursGUI::create ( )

Create new consultation hours.

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

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

164  {
165  $form = $this->initForm(true);
166  if ($form->checkInput()) {
167  $grp_ids = null;
168  $mode = $form->getInput("mode");
169  if ($mode == "manual") {
170  $grp_ids = $form->getInput("grp");
171  }
172 
173  $this->content_obj = new ilPCConsultationHours($this->getPage());
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);
179  }
180  }
181 
182  $form->setValuesByPost();
183  return $this->insert($form);
184  }
insert(ilPropertyFormGUI $a_form=null)
Insert consultation hours form.
Class ilPCConsultationHours.
initForm($a_insert=false)
Init consultation hours form.
+ 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 76 of file class.ilPCConsultationHoursGUI.php.

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

Referenced by update().

77  {
78  $tpl = $this->tpl;
79 
80  $this->displayValidationError();
81 
82  if (!$a_form) {
83  $a_form = $this->initForm();
84  }
85  $tpl->setContent($a_form->getHTML());
86  }
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 37 of file class.ilPCConsultationHoursGUI.php.

References $ret.

38  {
39  // get next class that processes or forwards current command
40  $next_class = $this->ctrl->getNextClass($this);
41 
42  // get current command
43  $cmd = $this->ctrl->getCmd();
44 
45  switch ($next_class) {
46  default:
47  $ret = &$this->$cmd();
48  break;
49  }
50 
51  return $ret;
52  }
$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 94 of file class.ilPCConsultationHoursGUI.php.

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

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

95  {
98  $lng = $this->lng;
99 
100  $form = new ilPropertyFormGUI();
101  $form->setFormAction($ilCtrl->getFormAction($this));
102  if ($a_insert) {
103  $form->setTitle($this->lng->txt("cont_insert_consultation_hours"));
104  } else {
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")) {
122  if (sizeof($grp_ids)) {
123  $this->lng->loadLanguageModule("dateplaner");
124  $groups = new ilCheckboxGroupInputGUI($this->lng->txt("cal_ch_app_grp"), "grp");
125  $groups->setRequired(true);
126  $opt_manual->addSubItem($groups);
127 
128  foreach ($grp_ids as $grp_obj) {
129  $groups->addOption(new ilCheckboxOption($grp_obj->getTitle(), $grp_obj->getGroupId()));
130  }
131  } else {
132  $opt_manual->setDisabled(true);
133  }
134  } else {
135  $opt_manual->setDisabled(true);
136  }
137 
138  if ($a_insert) {
139  $mode->setValue("auto");
140 
141  $form->addCommandButton("create_consultation_hours", $this->lng->txt("select"));
142  $form->addCommandButton("cancelCreate", $this->lng->txt("cancel"));
143  } else {
144  // set values
145  $grp_ids = $this->content_obj->getGroupIds();
146  if (sizeof($grp_ids)) {
147  $mode->setValue("manual");
148  $groups->setValue($grp_ids);
149  } else {
150  $mode->setValue("auto");
151  }
152 
153  $form->addCommandButton("update", $this->lng->txt("select"));
154  $form->addCommandButton("cancelUpdate", $this->lng->txt("cancel"));
155  }
156 
157  return $form;
158  }
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.
$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 59 of file class.ilPCConsultationHoursGUI.php.

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

Referenced by create().

60  {
61  $tpl = $this->tpl;
62 
63  $this->displayValidationError();
64 
65  if (!$a_form) {
66  $a_form = $this->initForm(true);
67  }
68  $tpl->setContent($a_form->getHTML());
69  }
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 189 of file class.ilPCConsultationHoursGUI.php.

References edit(), and initForm().

190  {
191  $form = $this->initForm();
192  if ($form->checkInput()) {
193  $grp_ids = array();
194  $mode = $form->getInput("mode");
195  if ($mode == "manual") {
196  $grp_ids = $form->getInput("grp");
197  }
198 
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);
203  }
204  }
205 
206  $this->pg_obj->addHierIDs();
207  $form->setValuesByPost();
208  return $this->edit($form);
209  }
initForm($a_insert=false)
Init consultation hours form.
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 17 of file class.ilPCConsultationHoursGUI.php.

Referenced by initForm().


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