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

Class ilPCAMDPageListGUI. More...

+ Inheritance diagram for ilPCAMDPageListGUI:
+ Collaboration diagram for ilPCAMDPageListGUI:

Public Member Functions

 ilPCAMDPageListGUI ($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 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 @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 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;"
 
- Protected Attributes inherited from ilPageContentGUI
 $log
 
- Static Protected Attributes inherited from ilPageContentGUI
static $common_bb_buttons
 

Detailed Description

Class ilPCAMDPageListGUI.

Handles user commands on advanced md page list

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.ilPCAMDPageListGUI.php.

Member Function Documentation

◆ create()

ilPCAMDPageListGUI::create ( )

Create new courses.

Definition at line 149 of file class.ilPCAMDPageListGUI.php.

150 {
151 $form = $this->initForm(true);
152 if($form->checkInput())
153 {
154 $elements = $this->record_gui->importSearchForm();
155 if(is_array($elements))
156 {
157 $this->content_obj = new ilPCAMDPageList($this->getPage());
158 $this->content_obj->create($this->pg_obj, $this->hier_id, $this->pc_id);
159 $this->content_obj->setData($elements);
160 $this->updated = $this->pg_obj->update();
161 if ($this->updated === true)
162 {
163 $this->ctrl->returnToParent($this, "jump".$this->hier_id);
164 }
165 }
166 }
167
168 // $form->setValuesByPost();
169 return $this->insert($form);
170 }
insert(ilPropertyFormGUI $a_form=null)
Insert courses form.
initForm($a_insert=false)
Init courses form.
Class ilPCAMDPageList.

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

+ Here is the call graph for this function:

◆ edit()

ilPCAMDPageListGUI::edit ( ilPropertyFormGUI  $a_form = null)

Edit courses form.

Parameters
ilPropertyFormGUI$a_form

Definition at line 73 of file class.ilPCAMDPageListGUI.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()

& ilPCAMDPageListGUI::executeCommand ( )

execute command

Definition at line 32 of file class.ilPCAMDPageListGUI.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.

◆ ilPCAMDPageListGUI()

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

Constructor @access public.

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

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

◆ initForm()

ilPCAMDPageListGUI::initForm (   $a_insert = false)
protected

Init courses form.

Parameters
bool$a_insert
Returns
ilPropertyFormGUI

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

93 {
94 global $ilCtrl;
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_amd_page_list"));
102 }
103 else
104 {
105 $form->setTitle($this->lng->txt("cont_update_amd_page_list"));
106 }
107 $form->setDescription($this->lng->txt("wiki_page_list_form_info"));
108
109 include_once('Services/AdvancedMetaData/classes/class.ilAdvancedMDRecordGUI.php');
110 $this->record_gui = new ilAdvancedMDRecordGUI(ilAdvancedMDRecordGUI::MODE_SEARCH,'wiki',$this->getPage()->getWikiId(),'wpg',$this->getPage()->getId());
111 $this->record_gui->setPropertyForm($form);
112
113 if (!$a_insert)
114 {
115 $this->record_gui->setSearchFormValues($this->content_obj->getFieldValues());
116 }
117
118 $this->record_gui->parse();
119
120 $no_fields = (count($form->getItems()) == 0);
121 if ($no_fields)
122 {
123 ilUtil::sendFailure($this->lng->txt("wiki_pg_list_no_search_fields"));
124 }
125
126 if ($a_insert)
127 {
128 if (!$no_fields)
129 {
130 $form->addCommandButton("create_amd_page_list", $this->lng->txt("select"));
131 }
132 $form->addCommandButton("cancelCreate", $this->lng->txt("cancel"));
133 }
134 else
135 {
136 if (!$no_fields)
137 {
138 $form->addCommandButton("update", $this->lng->txt("select"));
139 }
140 $form->addCommandButton("cancelUpdate", $this->lng->txt("cancel"));
141 }
142
143 return $form;
144 }
This class represents a property form user interface.
static sendFailure($a_info="", $a_keep=false)
Send Failure Message to Screen.
global $ilCtrl
Definition: ilias.php:18

References $ilCtrl, ilPageContentGUI\getPage(), ilAdvancedMDRecordGUI\MODE_SEARCH, and ilUtil\sendFailure().

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

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

◆ insert()

ilPCAMDPageListGUI::insert ( ilPropertyFormGUI  $a_form = null)

Insert courses form.

Parameters
ilPropertyFormGUI$a_form

Definition at line 55 of file class.ilPCAMDPageListGUI.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()

ilPCAMDPageListGUI::update ( )

Update courses.

Definition at line 175 of file class.ilPCAMDPageListGUI.php.

176 {
177 $form = $this->initForm();
178 if($form->checkInput())
179 {
180 $elements = $this->record_gui->importSearchForm();
181 if(is_array($elements))
182 {
183 $this->content_obj->setData($elements);
184 $this->updated = $this->pg_obj->update();
185 if ($this->updated === true)
186 {
187 $this->ctrl->returnToParent($this, "jump".$this->hier_id);
188 }
189 }
190 }
191
192 $this->pg_obj->addHierIDs();
193 // $form->setValuesByPost();
194 return $this->edit($form);
195 }
edit(ilPropertyFormGUI $a_form=null)
Edit courses form.

References edit(), and initForm().

+ Here is the call graph for this function:

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