ILIAS  release_5-0 Revision 5.0.0-1144-gc4397b1f870
ilPCMyCoursesGUI Class Reference

Class ilPCMyCoursesGUI. More...

+ Inheritance diagram for ilPCMyCoursesGUI:
+ Collaboration diagram for ilPCMyCoursesGUI:

Public Member Functions

 ilPCMyCoursesGUI ($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 courses form. More...
 
 edit (ilPropertyFormGUI $a_form=null)
 Edit courses form. More...
 
 create ()
 Create new courses. More...
 
 update ()
 Update courses. More...
 
- Public Member Functions inherited from ilPageContentGUI
 ilPageContentGUI ($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 courses 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;"
 
- Static Protected Attributes inherited from ilPageContentGUI
static $common_bb_buttons
 

Detailed Description

Class ilPCMyCoursesGUI.

Handles user commands on my courses 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.ilPCMyCoursesGUI.php.

Member Function Documentation

◆ create()

ilPCMyCoursesGUI::create ( )

Create new courses.

Definition at line 134 of file class.ilPCMyCoursesGUI.php.

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

Referenced by insert().

135  {
136  $form = $this->initForm(true);
137  if($form->checkInput())
138  {
139  $this->content_obj = new ilPCMyCourses($this->getPage());
140  $this->content_obj->create($this->pg_obj, $this->hier_id, $this->pc_id);
141  $this->content_obj->setData();
142  $this->updated = $this->pg_obj->update();
143  if ($this->updated === true)
144  {
145  $this->ctrl->returnToParent($this, "jump".$this->hier_id);
146  }
147  }
148 
149  $form->setValuesByPost();
150  return $this->insert($form);
151  }
initForm($a_insert=false)
Init courses form.
Class ilPCMyCourses.
insert(ilPropertyFormGUI $a_form=null)
Insert courses form.
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ edit()

ilPCMyCoursesGUI::edit ( ilPropertyFormGUI  $a_form = null)

Edit courses form.

Parameters
ilPropertyFormGUI$a_form

Definition at line 78 of file class.ilPCMyCoursesGUI.php.

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

Referenced by update().

79  {
80  global $tpl;
81 
82  $this->displayValidationError();
83 
84  if(!$a_form)
85  {
86  $a_form = $this->initForm();
87  }
88  $tpl->setContent($a_form->getHTML());
89  }
initForm($a_insert=false)
Init courses form.
displayValidationError()
display validation errors
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ executeCommand()

& ilPCMyCoursesGUI::executeCommand ( )

execute command

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

References $cmd, and $ret.

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

◆ ilPCMyCoursesGUI()

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

Constructor public.

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

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

◆ initForm()

ilPCMyCoursesGUI::initForm (   $a_insert = false)
protected

Init courses form.

Parameters
bool$a_insert
Returns
ilPropertyFormGUI

Definition at line 97 of file class.ilPCMyCoursesGUI.php.

References $ilCtrl.

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

98  {
99  global $ilCtrl;
100 
101  include_once("./Services/Form/classes/class.ilPropertyFormGUI.php");
102  $form = new ilPropertyFormGUI();
103  $form->setFormAction($ilCtrl->getFormAction($this));
104  if ($a_insert)
105  {
106  $form->setTitle($this->lng->txt("cont_insert_my_courses"));
107  }
108  else
109  {
110  $form->setTitle($this->lng->txt("cont_update_my_courses"));
111  }
112 
113  $warn = new ilNonEditableValueGUI("");
114  $warn->setValue($this->lng->txt("cont_my_courses_no_settings"));
115  $form->addItem($warn);
116 
117  if ($a_insert)
118  {
119  $form->addCommandButton("create_my_courses", $this->lng->txt("select"));
120  $form->addCommandButton("cancelCreate", $this->lng->txt("cancel"));
121  }
122  else
123  {
124  // $form->addCommandButton("update", $this->lng->txt("select"));
125  $form->addCommandButton("cancelUpdate", $this->lng->txt("cancel"));
126  }
127 
128  return $form;
129  }
This class represents a property form user interface.
global $ilCtrl
Definition: ilias.php:18
This class represents a non editable value in a property form.
+ Here is the caller graph for this function:

◆ insert()

ilPCMyCoursesGUI::insert ( ilPropertyFormGUI  $a_form = null)

Insert courses form.

Parameters
ilPropertyFormGUI$a_form

Definition at line 55 of file class.ilPCMyCoursesGUI.php.

References ilPageContentGUI\$tpl, and create().

Referenced by create().

56  {
57  global $tpl;
58 
59  // #12816 - no form needed yet
60  $this->create();
61 
62  /*
63  $this->displayValidationError();
64 
65  if(!$a_form)
66  {
67  $a_form = $this->initForm(true);
68  }
69  $tpl->setContent($a_form->getHTML());
70  */
71  }
create()
Create new courses.
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ update()

ilPCMyCoursesGUI::update ( )

Update courses.

Definition at line 156 of file class.ilPCMyCoursesGUI.php.

References edit(), and initForm().

157  {
158  $form = $this->initForm();
159  if($form->checkInput())
160  {
161  $this->content_obj->setData();
162  $this->updated = $this->pg_obj->update();
163  if ($this->updated === true)
164  {
165  $this->ctrl->returnToParent($this, "jump".$this->hier_id);
166  }
167  }
168 
169  $this->pg_obj->addHierIDs();
170  $form->setValuesByPost();
171  return $this->edit($form);
172  }
initForm($a_insert=false)
Init courses form.
edit(ilPropertyFormGUI $a_form=null)
Edit courses form.
+ Here is the call graph for this function:

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