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

Class ilPCVerificationGUI. More...

+ Inheritance diagram for ilPCVerificationGUI:
+ Collaboration diagram for ilPCVerificationGUI:

Public Member Functions

 __construct (&$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 new verification form. More...
 
 edit (ilPropertyFormGUI $a_form=null)
 Edit verification form. More...
 
 create ()
 Create new verification. More...
 
 update ()
 Update verification. More...
 
- Public Member Functions inherited from ilPageContentGUI
 __construct ($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 verification 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 ilPCVerificationGUI.

Handles user commands on verifications

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 37 of file class.ilPCVerificationGUI.php.

Constructor & Destructor Documentation

◆ __construct()

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

Constructor @access public.

Definition at line 49 of file class.ilPCVerificationGUI.php.

50 {
51 global $DIC;
52
53 $this->tpl = $DIC["tpl"];
54 $this->ctrl = $DIC->ctrl();
55 $this->user = $DIC->user();
56 $this->lng = $DIC->language();
57 parent::__construct($a_pg_obj, $a_content_obj, $a_hier_id, $a_pc_id);
58 }
user()
Definition: user.php:4
global $DIC
Definition: saml.php:7

References $DIC, and user().

+ Here is the call graph for this function:

Member Function Documentation

◆ create()

ilPCVerificationGUI::create ( )

Create new verification.

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

172 {
173 $form = $this->initForm(true);
174 if ($form->checkInput()) {
175 $type = ilObject::_lookupType($form->getInput("object"));
176 if ($type) {
177 $this->content_obj = new ilPCVerification($this->getPage());
178 $this->content_obj->create($this->pg_obj, $this->hier_id, $this->pc_id);
179 $this->content_obj->setData($type, $form->getInput("object"));
180 $this->updated = $this->pg_obj->update();
181 if ($this->updated === true) {
182 $this->ctrl->returnToParent($this, "jump" . $this->hier_id);
183 }
184 }
185 }
186
187 $this->insert($form);
188 }
static _lookupType($a_id, $a_reference=false)
lookup object type
insert(ilPropertyFormGUI $a_form=null)
Insert new verification form.
initForm($a_insert=false)
Init verification form.
Class ilPCVerification.
$type
if(isset($_POST['submit'])) $form

References $form, $type, ilObject\_lookupType(), ilPageContentGUI\getPage(), initForm(), and insert().

+ Here is the call graph for this function:

◆ edit()

ilPCVerificationGUI::edit ( ilPropertyFormGUI  $a_form = null)

Edit verification form.

Parameters
ilPropertyFormGUI$a_form

Definition at line 102 of file class.ilPCVerificationGUI.php.

103 {
105
106 $this->displayValidationError();
107
108 if (!$a_form) {
109 $a_form = $this->initForm();
110 }
111 $tpl->setContent($a_form->getHTML());
112 }
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()

ilPCVerificationGUI::executeCommand ( )

execute command

Definition at line 63 of file class.ilPCVerificationGUI.php.

64 {
65 // get next class that processes or forwards current command
66 $next_class = $this->ctrl->getNextClass($this);
67
68 // get current command
69 $cmd = $this->ctrl->getCmd();
70
71 switch ($next_class) {
72 default:
73 $ret = $this->$cmd();
74 break;
75 }
76
77 return $ret;
78 }
$ret
Definition: parser.php:6

References $ret.

◆ initForm()

ilPCVerificationGUI::initForm (   $a_insert = false)
protected

Init verification form.

Parameters
bool$a_insert
Returns
ilPropertyFormGUI

Definition at line 120 of file class.ilPCVerificationGUI.php.

121 {
125
126 include_once("./Services/Form/classes/class.ilPropertyFormGUI.php");
127 $form = new ilPropertyFormGUI();
128 $form->setFormAction($ilCtrl->getFormAction($this));
129 if ($a_insert) {
130 $form->setTitle($this->lng->txt("cont_insert_verification"));
131 } else {
132 $form->setTitle($this->lng->txt("cont_update_verification"));
133 }
134
135 $lng->loadLanguageModule("wsp");
136 $options = array();
137 include_once "Services/PersonalWorkspace/classes/class.ilWorkspaceTree.php";
138 $tree = new ilWorkspaceTree($ilUser->getId());
139 $root = $tree->getRootId();
140 if ($root) {
141 $root = $tree->getNodeData($root);
142 foreach ($tree->getSubTree($root) as $node) {
143 if (in_array($node["type"], array("excv", "tstv", "crsv", "scov"))) {
144 $options[$node["obj_id"]] = $node["title"] . " (" . $lng->txt("wsp_type_" . $node["type"]) . ")";
145 }
146 }
147 asort($options);
148 }
149 $obj = new ilSelectInputGUI($this->lng->txt("cont_verification_object"), "object");
150 $obj->setRequired(true);
151 $obj->setOptions($options);
152 $form->addItem($obj);
153
154 if ($a_insert) {
155 $form->addCommandButton("create_verification", $this->lng->txt("save"));
156 $form->addCommandButton("cancelCreate", $this->lng->txt("cancel"));
157 } else {
158 $data = $this->content_obj->getData();
159 $obj->setValue($data["id"]);
160
161 $form->addCommandButton("update", $this->lng->txt("save"));
162 $form->addCommandButton("cancelUpdate", $this->lng->txt("cancel"));
163 }
164
165 return $form;
166 }
if(!isset( $_REQUEST[ 'ReturnTo'])) if(!isset($_REQUEST['AuthId'])) $options
Definition: as_login.php:20
This class represents a property form user interface.
This class represents a selection list property in a property form.
Tree handler for personal workspace.
global $ilCtrl
Definition: ilias.php:18
$ilUser
Definition: imgupload.php:18

References ilPageContentGUI\$ctrl, $data, $form, $ilCtrl, $ilUser, ilPageContentGUI\$lng, $options, and $user.

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

+ Here is the caller graph for this function:

◆ insert()

ilPCVerificationGUI::insert ( ilPropertyFormGUI  $a_form = null)

Insert new verification form.

Parameters
ilPropertyFormGUI$a_form

Definition at line 85 of file class.ilPCVerificationGUI.php.

86 {
88
90
91 if (!$a_form) {
92 $a_form = $this->initForm(true);
93 }
94 $tpl->setContent($a_form->getHTML());
95 }

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()

ilPCVerificationGUI::update ( )

Update verification.

Definition at line 193 of file class.ilPCVerificationGUI.php.

194 {
195 $form = $this->initForm(true);
196 if ($form->checkInput()) {
197 $type = ilObject::_lookupType($form->getInput("object"));
198 if ($type) {
199 $this->content_obj->setData($type, $form->getInput("object"));
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
207 $this->pg_obj->addHierIDs();
208 $this->edit($form);
209 }
edit(ilPropertyFormGUI $a_form=null)
Edit verification form.

References $form, $type, ilObject\_lookupType(), edit(), and initForm().

+ Here is the call graph for this function:

Field Documentation

◆ $user

ilPCVerificationGUI::$user
protected

Definition at line 42 of file class.ilPCVerificationGUI.php.

Referenced by initForm().


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