ILIAS  release_4-4 Revision
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilFormPropertyGUI.php
Go to the documentation of this file.
1 <?php
2 /* Copyright (c) 1998-2009 ILIAS open source, Extended GPL, see docs/LICENSE */
3 
12 {
13  protected $type;
14  protected $title;
15  protected $postvar;
16  protected $info;
17  protected $alert;
18  protected $required = false;
19  protected $parentgui;
20  protected $parentform;
21  protected $hidden_title = "";
22  protected $multi = false;
23  protected $multi_sortable = false;
24  protected $multi_addremove = true;
25  protected $multi_values;
26 
33  function __construct($a_title = "", $a_postvar = "")
34  {
35  $this->setTitle($a_title);
36  $this->setPostVar($a_postvar);
37  $this->setDisabled(false);
38  }
39 
43  function &executeCommand()
44  {
45  global $ilCtrl;
46 
47  $next_class = $ilCtrl->getNextClass($this);
48  $cmd = $ilCtrl->getCmd();
49 
50  return $this->$cmd();
51  }
52 
58  protected function setType($a_type)
59  {
60  $this->type = $a_type;
61  }
62 
68  function getType()
69  {
70  return $this->type;
71  }
72 
78  function setTitle($a_title)
79  {
80  $this->title = $a_title;
81  }
82 
88  function getTitle()
89  {
90  return $this->title;
91  }
92 
98  function setPostVar($a_postvar)
99  {
100  $this->postvar = $a_postvar;
101  }
102 
108  function getPostVar()
109  {
110  return $this->postvar;
111  }
112 
118  function getFieldId()
119  {
120  $id = str_replace("[", "__", $this->getPostVar());
121  $id = str_replace("]", "__", $id);
122 
123  return $id;
124  }
125 
131  function setInfo($a_info)
132  {
133  $this->info = $a_info;
134  }
135 
141  function getInfo()
142  {
143  return $this->info;
144  }
145 
151  function setAlert($a_alert)
152  {
153  $this->alert = $a_alert;
154  }
155 
161  function getAlert()
162  {
163  return $this->alert;
164  }
165 
171  function setRequired($a_required)
172  {
173  $this->required = $a_required;
174  }
175 
181  function getRequired()
182  {
183  return $this->required;
184  }
185 
191  function setDisabled($a_disabled)
192  {
193  $this->disabled = $a_disabled;
194  }
195 
201  function getDisabled()
202  {
203  return $this->disabled;
204  }
205 
211  function checkInput()
212  {
213  return false; // please overwrite
214  }
215 
221  function setParentForm($a_parentform)
222  {
223  $this->setParent($a_parentform);
224  }
225 
231  function getParentForm()
232  {
233  return $this->getParent();
234  }
235 
241  function setParent($a_val)
242  {
243  $this->parent_gui = $a_val;
244  }
245 
251  function getParent()
252  {
253  return $this->parent_gui;
254  }
255 
260  public function getSubForm()
261  {
262  return "";
263  }
264 
269  public function hideSubForm()
270  {
271  return false;
272  }
273 
279  function setHiddenTitle($a_val)
280  {
281  $this->hidden_title = $a_val;
282  }
283 
289  function getHiddenTitle()
290  {
291  return $this->hidden_title;
292  }
293 
299  function getItemByPostVar($a_post_var)
300  {
301  if ($this->getPostVar() == $a_post_var)
302  {
303  return $this;
304  }
305 
306  return false;
307  }
308 
312  function serializeData()
313  {
314  return serialize($this->getValue());
315  }
316 
320  function unserializeData($a_data)
321  {
322  $data = unserialize($a_data);
323 
324  if ($data)
325  {
326  $this->setValue($data);
327  }
328  else
329  {
330  $this->setValue(false);
331  }
332  }
333 
337  function writeToSession()
338  {
339  $parent = $this->getParent();
340  if (!is_object($parent))
341  {
342  die("You must set parent for ".get_class($this)." to use serialize feature.");
343  }
344  $_SESSION["form_".$parent->getId()][$this->getFieldId()] =
345  $this->serializeData();
346  }
347 
351  function clearFromSession()
352  {
353  $parent = $this->getParent();
354  if (!is_object($parent))
355  {
356  die("You must set parent for ".get_class($this)." to use serialize feature.");
357  }
358  $_SESSION["form_".$parent->getId()][$this->getFieldId()] = false;
359  }
360 
364  function readFromSession()
365  {
366  $parent = $this->getParent();
367  if (!is_object($parent))
368  {
369  die("You must set parent for ".get_class($this)." to use serialize feature.");
370  }
371  $this->unserializeData($_SESSION["form_".$parent->getId()][$this->getFieldId()]);
372  }
373 
377  function getHiddenTag($a_post_var, $a_value)
378  {
379  return '<input type="hidden" name="'.$a_post_var.'" value="'.ilUtil::prepareFormOutput($a_value).'" />';
380  }
381 
387  public function setMulti($a_multi, $a_sortable = false, $a_addremove = true)
388  {
389  if (!$this instanceof ilMultiValuesItem)
390  {
391  trigger_error("not supported for form property type", E_USER_WARNING);
392  }
393 
394  $this->multi = (bool)$a_multi;
395  $this->multi_sortable = (bool)$a_sortable;
396  $this->multi_addremove = (bool)$a_addremove;
397  }
398 
404  public function getMulti()
405  {
406  return $this->multi;
407  }
408 
414  public function setMultiValues(array $a_values)
415  {
416  $this->multi_values = array_unique($a_values);
417  }
418 
424  public function getMultiValues()
425  {
426  return $this->multi_values;
427  }
428 
435  protected function getMultiIconsHTML()
436  {
437  global $lng;
438 
439  $id = $this->getFieldId();
440 
441  $tpl = new ilTemplate("tpl.multi_icons.html", true, true, "Services/Form");
442 
443  $html = "";
444  if ($this->multi_addremove)
445  {
446  $tpl->setCurrentBlock("addremove");
447  $tpl->setVariable("ID", $id);
448  $tpl->setVariable("SRC_ADD", ilUtil::getImagePath('edit_add.png'));
449  $tpl->setVariable("TXT_ADD", $lng->txt("add"));
450  $tpl->setVariable("SRC_REMOVE", ilUtil::getImagePath('edit_remove.png'));
451  $tpl->setVariable("TXT_REMOVE", $lng->txt("remove"));
452  $tpl->parseCurrentBlock();
453  }
454 
455  if ($this->multi_sortable)
456  {
457 
458  $tpl->setCurrentBlock("sortable");
459  $tpl->setVariable("ID", $id);
460  $tpl->setVariable("SRC_DOWN", ilUtil::getImagePath('icon_down_s.png'));
461  $tpl->setVariable("TXT_DOWN", $lng->txt("down"));
462  $tpl->setVariable("SRC_UP", ilUtil::getImagePath('icon_up_s.png'));
463  $tpl->setVariable("TXT_UP", $lng->txt("up"));
464  $tpl->parseCurrentBlock();
465  }
466 
467  return $tpl->get();
468  }
469 
475  public function getContentOutsideFormTag()
476  {
477 
478  }
479 }
480 ?>
< a tabindex="-1" style="border-style: none;" href="#" title="Refresh Image" onclick="document.getElementById('siimage').src = './securimage_show.php?sid=' + Math.random(); this.blur(); return false">< img src="./images/refresh.png" alt="Reload Image" height="32" width="32" onclick="this.blur()" align="bottom" border="0"/></a >< br/>< strong > Enter Code *if($_SERVER['REQUEST_METHOD']=='POST' &&@ $_POST['do']=='contact') $_SESSION['ctform']['success']
static prepareFormOutput($a_str, $a_strip=false)
prepares string output for html forms public
getHiddenTag($a_post_var, $a_value)
Get hidden tag (used for disabled properties)
getPostVar()
Get Post Variable.
getParentForm()
Get Parent Form.
$cmd
Definition: sahs_server.php:35
setPostVar($a_postvar)
Set Post Variable.
checkInput()
Check input, strip slashes etc.
getMultiIconsHTML()
Get HTML for multiple value icons.
setMultiValues(array $a_values)
Set multi values.
getItemByPostVar($a_post_var)
Get item by post var.
setAlert($a_alert)
Set Alert Text.
global $ilCtrl
Definition: ilias.php:18
setType($a_type)
Set Type.
setInfo($a_info)
Set Information Text.
getAlert()
Get Alert Text.
getMultiValues()
Get multi values.
setParent($a_val)
Set Parent GUI object.
clearFromSession()
Clear session value.
readFromSession()
Read from session.
static getImagePath($img, $module_path="", $mode="output", $offline=false)
get image path (for images located in a template directory)
unserializeData($a_data)
unserialize data
getFieldId()
Get Post Variable.
special template class to simplify handling of ITX/PEAR
setTitle($a_title)
Set Title.
if(isset($_FILES['img_file']['size']) && $_FILES['img_file']['size'] > 0) $tpl
getHiddenTitle()
Get hidden title.
getParent()
Get Parent GUI object.
hideSubForm()
Sub form hidden on init?
setHiddenTitle($a_val)
Set hidden title (for screenreaders)
Interface for multi values support.
serializeData()
serialize data
& executeCommand()
Execute command.
while($lm_rec=$ilDB->fetchAssoc($lm_set)) $data
getContentOutsideFormTag()
Get content that has to reside outside of the parent form tag, e.g.
setMulti($a_multi, $a_sortable=false, $a_addremove=true)
Set Multi.
__construct($a_title="", $a_postvar="")
Constructor.
This class represents a property in a property form.
global $lng
Definition: privfeed.php:40
getInfo()
Get Information Text.
getSubForm()
Get sub form html.
setParentForm($a_parentform)
Set Parent Form.
writeToSession()
Write to session.
setDisabled($a_disabled)
Set Disabled.
setRequired($a_required)
Set Required.