ILIAS  release_4-4 Revision
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilPropertyFormGUI.php
Go to the documentation of this file.
1 <?php
2 /* Copyright (c) 1998-2009 ILIAS open source, Extended GPL, see docs/LICENSE */
3 
4 include_once("./Services/Form/classes/class.ilFormGUI.php");
5 
6 // please do not add any more includes here if things are not really
7 // highly re-used
8 include_once("./Services/Form/classes/class.ilFormPropertyGUI.php");
9 include_once("./Services/Form/classes/class.ilSubEnabledFormPropertyGUI.php");
10 include_once("./Services/Form/classes/class.ilCheckboxInputGUI.php");
11 include_once("./Services/Form/classes/class.ilCustomInputGUI.php");
12 include_once("./Services/Form/classes/class.ilDateTimeInputGUI.php");
13 include_once("./Services/Form/classes/class.ilFileInputGUI.php");
14 include_once("./Services/Form/classes/class.ilImageFileInputGUI.php");
15 include_once('./Services/Form/classes/class.ilFlashFileInputGUI.php');
16 include_once("./Services/Form/classes/class.ilLocationInputGUI.php");
17 include_once("./Services/Form/classes/class.ilRadioGroupInputGUI.php");
18 include_once("./Services/Form/classes/class.ilCheckboxGroupInputGUI.php");
19 include_once("./Services/Form/classes/class.ilFormSectionHeaderGUI.php");
20 include_once("./Services/Form/classes/class.ilSelectInputGUI.php");
21 include_once("./Services/Form/classes/class.ilTextAreaInputGUI.php");
22 include_once("./Services/Form/classes/class.ilTextInputGUI.php");
23 include_once("./Services/Form/classes/class.ilDurationInputGUI.php");
24 include_once("./Services/Form/classes/class.ilFeedUrlInputGUI.php");
25 include_once("./Services/Form/classes/class.ilNonEditableValueGUI.php");
26 include_once("./Services/Form/classes/class.ilRegExpInputGUI.php");
27 include_once('./Services/Form/classes/class.ilColorPickerInputGUI.php');
28 include_once('./Services/Form/classes/class.ilPasswordInputGUI.php');
29 include_once('./Services/Form/classes/class.ilUserLoginInputGUI.php');
30 include_once('./Services/Form/classes/class.ilEMailInputGUI.php');
31 include_once('./Services/Form/classes/class.ilHiddenInputGUI.php');
32 include_once('./Services/Form/classes/class.ilNumberInputGUI.php');
33 include_once('./Services/Form/classes/class.ilCSSRectInputGUI.php');
34 include_once('./Services/Form/classes/class.ilTextWizardInputGUI.php');
35 include_once './Services/Form/classes/class.ilFileWizardInputGUI.php';
36 include_once './Services/Form/classes/class.ilFormulaInputGUI.php';
37 include_once './Services/Form/classes/class.ilBirthdayInputGUI.php';
38 
48 {
49  private $buttons = array();
50  private $items = array();
51  protected $mode = "std";
52  protected $check_input_called = false;
53  protected $disable_standard_message = false;
54  protected $top_anchor = "il_form_top";
55  protected $titleicon = false;
56  protected $description = "";
57  protected $tbl_width = false;
58  protected $show_top_buttons = true;
59  protected $reloaded_files;
60  protected $hide_labels = false;
61 
67  function ilPropertyFormGUI()
68  {
69  global $lng;
70 
71  $lng->loadLanguageModule("form");
72  parent::ilFormGUI();
73 
74  // do it as early as possible
75  $this->rebuildUploadedFiles();
76  }
77 
81  function &executeCommand()
82  {
83  global $ilCtrl;
84 
85  $next_class = $ilCtrl->getNextClass($this);
86  $cmd = $ilCtrl->getCmd();
87 
88  switch($next_class)
89  {
90  case 'ilformpropertydispatchgui':
91  $ilCtrl->saveParameter($this, 'postvar');
92  include_once './Services/Form/classes/class.ilFormPropertyDispatchGUI.php';
93  $form_prop_dispatch = new ilFormPropertyDispatchGUI();
94  $item = $this->getItemByPostVar($_REQUEST["postvar"]);
95  $form_prop_dispatch->setItem($item);
96  return $ilCtrl->forwardCommand($form_prop_dispatch);
97  break;
98 
99  }
100  return false;
101  }
102 
110  final public function setTableWidth($a_width)
111  {
112  $this->tbl_width = $a_width;
113  }
114 
121  final public function getTableWidth()
122  {
123  return $this->tbl_width;
124  }
125 
131  function setMode($a_mode)
132  {
133  $this->mode = $a_mode;
134  }
135 
141  function getMode()
142  {
143  return $this->mode;
144  }
145 
151  function setTitle($a_title)
152  {
153  $this->title = $a_title;
154  }
155 
161  function getTitle()
162  {
163  return $this->title;
164  }
165 
171  function setTitleIcon($a_titleicon)
172  {
173  $this->titleicon = $a_titleicon;
174  }
175 
181  function getTitleIcon()
182  {
183  return $this->titleicon;
184  }
185 
191  function setDescription($a_val)
192  {
193  $this->description = $a_val;
194  }
195 
201  function getDescription()
202  {
203  return $this->description;
204  }
205 
211  function setTopAnchor($a_val)
212  {
213  $this->top_anchor = $a_val;
214  }
215 
221  function getTopAnchor()
222  {
223  return $this->top_anchor;
224  }
225 
229  public function setShowTopButtons($a_val)
230  {
231  $this->show_top_buttons = $a_val;
232  }
233 
237  public function getShowTopButtons()
238  {
240  }
241 
247  function addItem($a_item)
248  {
249  $a_item->setParentForm($this);
250  return $this->items[] = $a_item;
251  }
252 
258  function removeItemByPostVar($a_post_var)
259  {
260  foreach ($this->items as $key => $item)
261  {
262  if (method_exists($item, "getPostVar") && $item->getPostVar() == $a_post_var)
263  {
264  unset($this->items[$key]);
265  }
266  }
267  }
268 
274  function getItemByPostVar($a_post_var)
275  {
276  foreach ($this->items as $key => $item)
277  {
278  if ($item->getType() != "section_header")
279  {
280  //if ($item->getPostVar() == $a_post_var)
281  $ret = $item->getItemByPostVar($a_post_var);
282  if (is_object($ret))
283  {
284  return $ret;
285  }
286  }
287  }
288 
289  return false;
290  }
291 
297  function setItems($a_items)
298  {
299  $this->items = $a_items;
300  }
301 
307  function getItems()
308  {
309  return $this->items;
310  }
311 
318  public function getInputItemsRecursive()
319  {
320  $inputItems = array();
321 
322  foreach($this->items as $item)
323  {
324  if( $item->getType() == 'section_header' )
325  {
326  continue;
327  }
328 
329  $inputItems[] = $item;
330 
331  if( $item instanceof ilSubEnabledFormPropertyGUI )
332  {
333  $inputItems = array_merge( $inputItems, $item->getSubInputItemsRecursive() );
334  }
335  }
336 
337  return $inputItems;
338  }
339 
345  function setDisableStandardMessage($a_val)
346  {
347  $this->disable_standard_message = $a_val;
348  }
349 
356  {
358  }
359 
365  function getHideLabels()
366  {
367  return $this->hide_labels;
368  }
369 
375  function setHideLabels($a_value = true)
376  {
377  $this->hide_labels = $a_value;
378  }
379 
385  function setValuesByArray($a_values)
386  {
387  foreach($this->items as $item)
388  {
389  $item->setValueByArray($a_values);
390  }
391  }
392 
397  function setValuesByPost()
398  {
399  foreach($this->items as $item)
400  {
401  $item->setValueByArray($_POST);
402  }
403  }
404 
411  function checkInput()
412  {
413  global $lng;
414 
415  if ($this->check_input_called)
416  {
417  die ("Error: ilPropertyFormGUI->checkInput() called twice.");
418  }
419 
420  $ok = true;
421  foreach($this->items as $item)
422  {
423  $item_ok = $item->checkInput();
424  if(!$item_ok)
425  {
426  $ok = false;
427  }
428  }
429 
430  // check if POST is missint completely (if post_max_size exceeded)
431  if (count($this->items) > 0 && !is_array($_POST))
432  {
433  $ok = false;
434  }
435 
436  $this->check_input_called = true;
437 
438 
439 
440  // try to keep uploads for another try
441  if(!$ok && $_POST["ilfilehash"] && sizeof($_FILES))
442  {
443  $hash = $_POST["ilfilehash"];
444 
445  foreach($_FILES as $field => $data)
446  {
447  // we support up to 2 nesting levels (see test/assesment)
448  if(is_array($data["tmp_name"]))
449  {
450  foreach($data["tmp_name"] as $idx => $upload)
451  {
452  if(is_array($upload))
453  {
454  foreach($upload as $idx2 => $file)
455  {
456  if($file && is_uploaded_file($file))
457  {
458  $file_name = $data["name"][$idx][$idx2];
459  $file_type = $data["type"][$idx][$idx2];
460  $this->keepFileUpload($hash, $field, $file, $file_name, $file_type, $idx, $idx2);
461  }
462  }
463  }
464  else if($upload && is_uploaded_file($upload))
465  {
466  $file_name = $data["name"][$idx];
467  $file_type = $data["type"][$idx];
468  $this->keepFileUpload($hash, $field, $upload, $file_name, $file_type, $idx);
469  }
470  }
471  }
472  else
473  {
474  $this->keepFileUpload($hash, $field, $data["tmp_name"], $data["name"], $data["type"]);
475  }
476  }
477  }
478 
479 
480  if (!$ok && !$this->getDisableStandardMessage())
481  {
482  ilUtil::sendFailure($lng->txt("form_input_not_valid"));
483  }
484  return $ok;
485  }
486 
497  public function getInput($a_post_var, $ensureValidation = true)
498  {
499  // this check ensures, that checkInput has been called (incl. stripSlashes())
500  if (!$this->check_input_called && $ensureValidation)
501  {
502  die ("Error: ilPropertyFormGUI->getInput() called without calling checkInput() first.");
503  }
504 
505  return $_POST[$a_post_var];
506  }
507 
517  function addCustomProperty($a_title, $a_html, $a_info = "",
518  $a_alert = "", $a_required = false)
519  {
520  $this->properties[] = array ("type" => "custom",
521  "title" => $a_title,
522  "html" => $a_html,
523  "info" => $a_info);
524  }
525 
532  function addCommandButton($a_cmd, $a_text)
533  {
534  $this->buttons[] = array("cmd" => $a_cmd, "text" => $a_text);
535  }
536 
541  {
542  $this->buttons = array();
543  }
544 
548  function getContent()
549  {
550  global $lng, $tpl, $ilUser, $ilSetting;
551 
552  include_once("./Services/YUI/classes/class.ilYuiUtil.php");
556 
557  $tpl->addJavaScript("./Services/JavaScript/js/Basic.js");
558  $tpl->addJavaScript("Services/Form/js/Form.js");
559 
560  $this->tpl = new ilTemplate("tpl.property_form.html", true, true, "Services/Form");
561 
562  // check if form has not title and first item is a section header
563  // -> use section header for title and remove section header
564  // -> command buttons are presented on top
565  $fi = $this->items[0];
566  if ($this->getMode() == "std" &&
567  $this->getTitle() == "" &&
568  is_object($fi) && $fi->getType() == "section_header"
569  )
570  {
571  $this->setTitle($fi->getTitle());
572  unset($this->items[0]);
573  }
574 
575 
576  // title icon
577  if ($this->getTitleIcon() != "" && @is_file($this->getTitleIcon()))
578  {
579  $this->tpl->setCurrentBlock("title_icon");
580  $this->tpl->setVariable("IMG_ICON", $this->getTitleIcon());
581  $this->tpl->parseCurrentBlock();
582  }
583 
584  // title
585  if ($this->getTitle() != "")
586  {
587  // commands on top
588  if (count($this->buttons) > 0 && $this->getShowTopButtons())
589  {
590  // command buttons
591  foreach($this->buttons as $button)
592  {
593  $this->tpl->setCurrentBlock("cmd2");
594  $this->tpl->setVariable("CMD", $button["cmd"]);
595  $this->tpl->setVariable("CMD_TXT", $button["text"]);
596  $this->tpl->parseCurrentBlock();
597  }
598  $this->tpl->setCurrentBlock("commands2");
599  $this->tpl->parseCurrentBlock();
600  }
601 
602  if (is_object($ilSetting))
603  {
604  if ($ilSetting->get('char_selector_availability') > 0)
605  {
606  require_once 'Services/UIComponent/CharSelector/classes/class.ilCharSelectorGUI.php';
608  {
609  $char_selector = ilCharSelectorGUI::_getCurrentGUI();
610  if ($char_selector->getConfig()->getAvailability() == ilCharSelectorConfig::ENABLED)
611  {
612  $char_selector->addToPage();
613  $this->tpl->TouchBlock('char_selector');
614  }
615  }
616  }
617  }
618 
619  $this->tpl->setCurrentBlock("header");
620  $this->tpl->setVariable("TXT_TITLE", $this->getTitle());
621  $this->tpl->setVariable("LABEL", $this->getTopAnchor());
622  $this->tpl->setVariable("TXT_DESCRIPTION", $this->getDescription());
623  $this->tpl->parseCurrentBlock();
624  }
625  $this->tpl->touchBlock("item");
626 
627  // properties
628  $this->required_text = false;
629  foreach($this->items as $item)
630  {
631  if ($item->getType() != "hidden")
632  {
633  $this->insertItem($item);
634  }
635  }
636 
637  // required
638  if ($this->required_text && $this->getMode() == "std")
639  {
640  $this->tpl->setCurrentBlock("required_text");
641  $this->tpl->setVariable("TXT_REQUIRED", $lng->txt("required_field"));
642  $this->tpl->parseCurrentBlock();
643  }
644 
645  // command buttons
646  foreach($this->buttons as $button)
647  {
648  $this->tpl->setCurrentBlock("cmd");
649  $this->tpl->setVariable("CMD", $button["cmd"]);
650  $this->tpl->setVariable("CMD_TXT", $button["text"]);
651  $this->tpl->parseCurrentBlock();
652  }
653 
654  // try to keep uploads even if checking input fails
655  if($this->getMultipart())
656  {
657  $hash = $_POST["ilfilehash"];
658  if(!$hash)
659  {
660  $hash = md5(uniqid(mt_rand(), true));
661  }
662  $fhash = new ilHiddenInputGUI("ilfilehash");
663  $fhash->setValue($hash);
664  $this->addItem($fhash);
665  }
666 
667  // hidden properties
668  $hidden_fields = false;
669  foreach($this->items as $item)
670  {
671  if ($item->getType() == "hidden")
672  {
673  $item->insert($this->tpl);
674  $hidden_fields = true;
675  }
676  }
677 
678  if ($this->required_text || count($this->buttons) > 0 || $hidden_fields)
679  {
680  $this->tpl->setCurrentBlock("commands");
681  $this->tpl->parseCurrentBlock();
682  }
683 
684 
685  if ($this->getMode() == "subform")
686  {
687  $this->tpl->touchBlock("sub_table");
688  }
689  else
690  {
691  $this->tpl->touchBlock("std_table");
692  $this->tpl->setVariable('STD_TABLE_WIDTH',$this->getTableWidth());
693  }
694 
695  return $this->tpl->get();
696  }
697 
698  function insertItem($item, $a_sub_item = false)
699  {
700  global $tpl, $lng;
701 
702 
703  $cfg = array();
704 
705  //if(method_exists($item, "getMulti") && $item->getMulti())
706  if ($item instanceof ilMultiValuesItem && $item->getMulti())
707  {
708  $tpl->addJavascript("./Services/Form/js/ServiceFormMulti.js");
709 
710  $this->tpl->setCurrentBlock("multi_in");
711  $this->tpl->setVariable("ID", $item->getFieldId());
712  $this->tpl->parseCurrentBlock();
713 
714  $this->tpl->touchBlock("multi_out");
715 
716 
717  // add hidden item to enable preset multi items
718  // not used yet, should replace hidden field stuff
719  $multi_values = $item->getMultiValues();
720  if(is_array($multi_values) && sizeof($multi_values) > 1)
721  {
722  $multi_value = new ilHiddenInputGUI("ilMultiValues~".$item->getPostVar());
723  $multi_value->setValue(implode("~", $multi_values));
724  $this->addItem($multi_value);
725  }
726  $cfg["multi_values"] = $multi_values;
727  }
728 
729  $item->insert($this->tpl);
730 
731  if ($item->getType() == "file" || $item->getType() == "image_file")
732  {
733  $this->setMultipart(true);
734  }
735 
736  if ($item->getType() != "section_header")
737  {
738  $cfg["id"] = $item->getFieldId();
739 
740  // info text
741  if ($item->getInfo() != "")
742  {
743  $this->tpl->setCurrentBlock("description");
744  $this->tpl->setVariable("PROPERTY_DESCRIPTION",
745  $item->getInfo());
746  $this->tpl->parseCurrentBlock();
747  }
748 
749  if ($this->getMode() == "subform")
750  {
751  // required
752  if ($item->getType() != "non_editable_value")
753  {
754  if ($item->getRequired())
755  {
756  $this->tpl->touchBlock("sub_required");
757  $this->required_text = true;
758  }
759  }
760 
761  // hidden title (for accessibility, e.g. file upload)
762  if ($item->getHiddenTitle() != "")
763  {
764  $this->tpl->setCurrentBlock("sub_hid_title");
765  $this->tpl->setVariable("SPHID_TITLE",
766  $item->getHiddenTitle());
767  $this->tpl->parseCurrentBlock();
768  }
769 
770  $this->tpl->setCurrentBlock("sub_prop_start");
771  $this->tpl->setVariable("PROPERTY_TITLE", $item->getTitle());
772  if ($item->getType() != "non_editable_value")
773  {
774  $this->tpl->setVariable("LAB_ID", $item->getFieldId());
775  }
776  $this->tpl->parseCurrentBlock();
777  }
778  else
779  {
780  // required
781  if ($item->getType() != "non_editable_value")
782  {
783  if ($item->getRequired())
784  {
785  $this->tpl->touchBlock("required");
786  $this->required_text = true;
787  }
788  }
789 
790  // hidden title (for accessibility, e.g. file upload)
791  if ($item->getHiddenTitle() != "")
792  {
793  $this->tpl->setCurrentBlock("std_hid_title");
794  $this->tpl->setVariable("PHID_TITLE",
795  $item->getHiddenTitle());
796  $this->tpl->parseCurrentBlock();
797  }
798 
799  $this->tpl->setCurrentBlock("std_prop_start");
800  $this->tpl->setVariable("PROPERTY_TITLE", $item->getTitle());
801  if ($item->getType() != "non_editable_value")
802  {
803  $this->tpl->setVariable("LAB_ID", $item->getFieldId());
804  }
805  if ($this->getHideLabels())
806  {
807  $this->tpl->setVariable("HIDE_LABELS_STYLE", " ilFormOptionHidden");
808  }
809  $this->tpl->parseCurrentBlock();
810  }
811 
812  // alert
813  if ($item->getType() != "non_editable_value" && $item->getAlert() != "")
814  {
815  $this->tpl->setCurrentBlock("alert");
816  $this->tpl->setVariable("IMG_ALERT",
817  ilUtil::getImagePath("icon_alert_s.png"));
818  $this->tpl->setVariable("ALT_ALERT",
819  $lng->txt("alert"));
820  $this->tpl->setVariable("TXT_ALERT",
821  $item->getAlert());
822  $this->tpl->parseCurrentBlock();
823  }
824 
825  // subitems
826  $sf = null;
827  if ($item->getType() != "non_editable_value" or 1)
828  {
829  $sf = $item->getSubForm();
830  if ($item->hideSubForm() && is_object($sf))
831  {
832  $this->tpl->setCurrentBlock("sub_form_hide");
833  $this->tpl->setVariable("DSFID", $item->getFieldId());
834  $this->tpl->parseCurrentBlock();
835  }
836  }
837 
838 
839  $sf_content = "";
840  if (is_object($sf))
841  {
842  $sf_content = $sf->getContent();
843  if ($sf->getMultipart())
844  {
845  $this->setMultipart(true);
846  }
847  $this->tpl->setCurrentBlock("sub_form");
848  $this->tpl->setVariable("PROP_SUB_FORM", $sf_content);
849  $this->tpl->setVariable("SFID", $item->getFieldId());
850  $this->tpl->parseCurrentBlock();
851  }
852 
853  $this->tpl->setCurrentBlock("prop");
854  /* not used yet
855  include_once("./Services/JSON/classes/class.ilJsonUtil.php");
856  $this->tpl->setVariable("ID", $item->getFieldId());
857  $this->tpl->setVariable("CFG", ilJsonUtil::encode($cfg));*/
858  $this->tpl->parseCurrentBlock();
859  }
860 
861 
862  $this->tpl->touchBlock("item");
863  }
864 
865  public function getHTML()
866  {
867  $html = parent::getHTML();
868 
869  // #13531 - get content that has to reside outside of the parent form tag, e.g. panels/layers
870  foreach($this->items as $item)
871  {
872  // #13536 - ilFormSectionHeaderGUI does NOT extend ilFormPropertyGUI ?!
873  if(method_exists($item, "getContentOutsideFormTag"))
874  {
875  $outside = $item->getContentOutsideFormTag();
876  if($outside)
877  {
878  $html .= $outside;
879  }
880  }
881  }
882 
883  return $html;
884  }
885 
886 
887  //
888  // UPLOAD HANDLING
889  //
890 
903  protected function keepFileUpload($a_hash, $a_field, $a_tmp_name, $a_name, $a_type, $a_index = null, $a_sub_index = null)
904  {
905  global $ilUser;
906 
907  $user_id = $ilUser->getId();
908  if(!$user_id || $user_id == ANONYMOUS_USER_ID)
909  {
910  return;
911  }
912 
913  $a_name = ilUtil::getAsciiFileName($a_name);
914 
915  $tmp_file_name = implode("~~", array($user_id,
916  $a_hash,
917  $a_field,
918  $a_index,
919  $a_sub_index,
920  str_replace("/", "~~", $a_type),
921  str_replace("~~", "_", $a_name)));
922 
923  // make sure temp directory exists
924  $temp_path = ilUtil::getDataDir() . "/temp";
925  if (!is_dir($temp_path))
926  {
927  ilUtil::createDirectory($temp_path);
928  }
929 
930  move_uploaded_file($a_tmp_name, $temp_path."/".$tmp_file_name);
931  }
932 
941  function getFileUpload($a_field, $a_index = null, $a_sub_index = null)
942  {
943  $res = array();
944  if($a_index)
945  {
946  if($_FILES[$a_field]["tmp_name"][$a_index][$a_sub_index])
947  {
948  $res = array(
949  "tmp_name" => $_FILES[$a_field]["tmp_name"][$a_index][$a_sub_index],
950  "name" => $_FILES[$a_field]["name"][$a_index][$a_sub_index],
951  "type" => $_FILES[$a_field]["type"][$a_index][$a_sub_index],
952  "error" => $_FILES[$a_field]["error"][$a_index][$a_sub_index],
953  "size" => $_FILES[$a_field]["size"][$a_index][$a_sub_index],
954  "is_upload" => true
955  );
956  }
957  else if($this->reloaded_files[$a_field]["tmp_name"][$a_index][$a_sub_index])
958  {
959  $res = array(
960  "tmp_name" => $this->reloaded_files["tmp_name"][$a_index][$a_sub_index],
961  "name" => $this->reloaded_files["name"][$a_index][$a_sub_index],
962  "type" => $this->reloaded_files["type"][$a_index][$a_sub_index],
963  "error" => $this->reloaded_files["error"][$a_index][$a_sub_index],
964  "size" => $this->reloaded_files["size"][$a_index][$a_sub_index],
965  "is_upload" => false
966  );
967  }
968  }
969  else if($a_sub_index)
970  {
971  if($_FILES[$a_field]["tmp_name"][$a_index])
972  {
973  $res = array(
974  "tmp_name" => $_FILES[$a_field]["tmp_name"][$a_index],
975  "name" => $_FILES[$a_field]["name"][$a_index],
976  "type" => $_FILES[$a_field]["type"][$a_index],
977  "error" => $_FILES[$a_field]["error"][$a_index],
978  "size" => $_FILES[$a_field]["size"][$a_index],
979  "is_upload" => true
980  );
981  }
982  else if($this->reloaded_files[$a_field]["tmp_name"][$a_index])
983  {
984  $res = array(
985  "tmp_name" => $this->reloaded_files[$a_field]["tmp_name"][$a_index],
986  "name" => $this->reloaded_files[$a_field]["name"][$a_index],
987  "type" => $this->reloaded_files[$a_field]["type"][$a_index],
988  "error" => $this->reloaded_files[$a_field]["error"][$a_index],
989  "size" => $this->reloaded_files[$a_field]["size"][$a_index],
990  "is_upload" => false
991  );
992  }
993  }
994  else
995  {
996  if($_FILES[$a_field]["tmp_name"])
997  {
998  $res = array(
999  "tmp_name" => $_FILES[$a_field]["tmp_name"],
1000  "name" => $_FILES[$a_field]["name"],
1001  "type" => $_FILES[$a_field]["type"],
1002  "error" => $_FILES[$a_field]["error"],
1003  "size" => $_FILES[$a_field]["size"],
1004  "is_upload" => true
1005  );
1006  }
1007  else if($this->reloaded_files[$a_field]["tmp_name"])
1008  {
1009  $res = array(
1010  "tmp_name" => $this->reloaded_files[$a_field]["tmp_name"],
1011  "name" => $this->reloaded_files[$a_field]["name"],
1012  "type" => $this->reloaded_files[$a_field]["type"],
1013  "error" => $this->reloaded_files[$a_field]["error"],
1014  "size" => $this->reloaded_files[$a_field]["size"],
1015  "is_upload" => false
1016  );
1017  }
1018  }
1019  return $res;
1020  }
1021 
1030  function hasFileUpload($a_field, $a_index = null, $a_sub_index = null)
1031  {
1032  $data = $this->getFileUpload($a_field, $a_index, $a_sub_index);
1033  return (bool)$data["tmp_name"];
1034  }
1035 
1046  function moveFileUpload($a_target_directory, $a_field, $a_target_name = null, $a_index = null, $a_sub_index = null)
1047  {
1048  if(!is_dir($a_target_directory))
1049  {
1050  return;
1051  }
1052 
1053  $data = $this->getFileUpload($a_field, $a_index, $a_sub_index);
1054  if($data["tmp_name"] && file_exists($data["tmp_name"]))
1055  {
1056  if($a_target_name)
1057  {
1058  $data["name"] = $a_target_name;
1059  }
1060 
1061  $target_file = $a_target_directory."/".$data["name"];
1062  $target_file = str_replace("//", "/", $target_file);
1063 
1064  if($data["is_upload"])
1065  {
1066  if (!move_uploaded_file($data["tmp_name"], $target_file))
1067  {
1068  return;
1069  }
1070  }
1071  else
1072  {
1073  if (!rename($data["tmp_name"], $target_file))
1074  {
1075  return;
1076  }
1077  }
1078 
1079  return $target_file;
1080  }
1081  }
1082 
1086  protected function rebuildUploadedFiles()
1087  {
1088  global $ilUser;
1089 
1090  if($_POST["ilfilehash"])
1091  {
1092  $user_id = $ilUser->getId();
1093  $temp_path = ilUtil::getDataDir() . "/temp";
1094  if(is_dir($temp_path) && $user_id && $user_id != ANONYMOUS_USER_ID)
1095  {
1096  $reload = array();
1097 
1098  $temp_files = glob($temp_path."/".$ilUser->getId()."~~".$_POST["ilfilehash"]."~~*");
1099  if(is_array($temp_files))
1100  {
1101  foreach($temp_files as $full_file)
1102  {
1103  $file = explode("~~", basename($full_file));
1104  $field = $file[2];
1105  $idx = $file[3];
1106  $idx2 = $file[4];
1107  $type = $file[5]."/".$file[6];
1108  $name = $file[7];
1109 
1110  if($idx2 != "")
1111  {
1112  if(!$_FILES[$field]["tmp_name"][$idx][$idx2])
1113  {
1114  $reload[$field]["tmp_name"][$idx][$idx2] = $full_file;
1115  $reload[$field]["name"][$idx][$idx2] = $name;
1116  $reload[$field]["type"][$idx][$idx2] = $type;
1117  $reload[$field]["error"][$idx][$idx2] = 0;
1118  $reload[$field]["size"][$idx][$idx2] = filesize($full_file);
1119  }
1120  }
1121  else if($idx != "")
1122  {
1123  if(!$_FILES[$field]["tmp_name"][$idx])
1124  {
1125  $reload[$field]["tmp_name"][$idx] = $full_file;
1126  $reload[$field]["name"][$idx] = $name;
1127  $reload[$field]["type"][$idx] = $type;
1128  $reload[$field]["error"][$idx] = 0;
1129  $reload[$field]["size"][$idx] = filesize($full_file);
1130  }
1131  }
1132  else
1133  {
1134  if(!$_FILES[$field]["tmp_name"])
1135  {
1136  $reload[$field]["tmp_name"] = $full_file;
1137  $reload[$field]["name"] = $name;
1138  $reload[$field]["type"] = $type;
1139  $reload[$field]["error"] = 0;
1140  $reload[$field]["size"] = filesize($full_file);
1141  }
1142  }
1143  }
1144  }
1145 
1146  $this->reloaded_files = $reload;
1147  }
1148  }
1149  }
1150 }
1151 
1152 ?>
print $file
hasFileUpload($a_field, $a_index=null, $a_sub_index=null)
Was any file uploaded?
static _isAllowed()
Check if the CharSelector is allowed for the current GUI.
setTitleIcon($a_titleicon)
Set TitleIcon.
$_POST['username']
Definition: cron.php:12
removeItemByPostVar($a_post_var)
Remove Item.
getDisableStandardMessage()
Get disable standard message.
getItemByPostVar($a_post_var)
Get Item by POST variable.
This class represents a property form user interface.
static initAnimation()
Init YUI Animation.
setItems($a_items)
Set Items.
setValuesByArray($a_values)
Set form values from an array.
getTableWidth()
get table width
$cmd
Definition: sahs_server.php:35
This class represents a form user interface.
ilPropertyFormGUI()
Constructor.
getTitleIcon()
Get TitleIcon.
addItem($a_item)
Add Item (Property, SectionHeader).
setShowTopButtons($a_val)
Get show top buttons.
setValue($a_value)
Set Value.
getMode()
Get Mode (&#39;std&#39;, &#39;subform&#39;).
setMultipart($a_multipart)
Set Enctype Multipart/Formdata true/false.
getDescription()
Get description.
clearCommandButtons()
Remove all command buttons.
global $ilCtrl
Definition: ilias.php:18
static initDom()
Init YUI Dom.
moveFileUpload($a_target_directory, $a_field, $a_target_name=null, $a_index=null, $a_sub_index=null)
Move upload to target directory.
This class represents a hidden form property in a property form.
getTopAnchor()
Get top anchor.
setMode($a_mode)
Set Mode (&#39;std&#39;, &#39;subform&#39;).
addCustomProperty($a_title, $a_html, $a_info="", $a_alert="", $a_required=false)
Add a custom property.
setTitle($a_title)
Set Title.
setTopAnchor($a_val)
Set top anchor.
static getImagePath($img, $module_path="", $mode="output", $offline=false)
get image path (for images located in a template directory)
keepFileUpload($a_hash, $a_field, $a_tmp_name, $a_name, $a_type, $a_index=null, $a_sub_index=null)
Import upload into temp directory.
special template class to simplify handling of ITX/PEAR
checkInput()
Check Post Input.
setDisableStandardMessage($a_val)
Set disable standard message.
if(isset($_FILES['img_file']['size']) && $_FILES['img_file']['size'] > 0) $tpl
static _getCurrentGUI(ilObjTest $a_test_obj=null)
Get the GUI that is used for the currently available selector (other GUI instances may exist for conf...
static createDirectory($a_dir, $a_mod=0755)
create directory
getShowTopButtons()
Set show top buttons.
getInput($a_post_var, $ensureValidation=true)
Returns the value of a HTTP-POST variable, identified by the passed id.
static initEvent()
Init YUI Event.
insertItem($item, $a_sub_item=false)
addCommandButton($a_cmd, $a_text)
Add Command button.
setValuesByPost()
Set form values from POST values.
static sendFailure($a_info="", $a_keep=false)
Send Failure Message to Screen.
Interface for multi values support.
getFileUpload($a_field, $a_index=null, $a_sub_index=null)
Get file upload data.
while($lm_rec=$ilDB->fetchAssoc($lm_set)) $data
global $ilUser
Definition: imgupload.php:15
static getDataDir()
get data directory (outside webspace)
setHideLabels($a_value=true)
Set a value indicating whether the labels should be hidden or not.
getInputItemsRecursive()
returns a flat array of all input items including the possibly existing subitems recursively ...
global $ilSetting
Definition: privfeed.php:40
getHideLabels()
Get a value indicating whether the labels should be hidden or not.
& executeCommand()
Execute command.
This class represents a property that may include a sub form.
global $lng
Definition: privfeed.php:40
setTableWidth($a_width)
Set table width.
if($_REQUEST['ilias_path']) define('ILIAS_HTTP_PATH' $_REQUEST['ilias_path']
Definition: index.php:7
rebuildUploadedFiles()
try to rebuild files
setDescription($a_val)
Set description.
getMultipart()
Get Enctype Multipart/Formdata true/false.