4 include_once(
"./Services/Form/classes/class.ilFormGUI.php");
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';
71 $lng->loadLanguageModule(
"form");
85 $next_class = $ilCtrl->getNextClass($this);
86 $cmd = $ilCtrl->getCmd();
90 case 'ilformpropertydispatchgui':
91 $ilCtrl->saveParameter($this,
'postvar');
92 include_once
'./Services/Form/classes/class.ilFormPropertyDispatchGUI.php';
95 $form_prop_dispatch->setItem($item);
96 return $ilCtrl->forwardCommand($form_prop_dispatch);
112 $this->tbl_width = $a_width;
133 $this->mode = $a_mode;
153 $this->title = $a_title;
173 $this->titleicon = $a_titleicon;
193 $this->description = $a_val;
213 $this->top_anchor = $a_val;
231 $this->show_top_buttons = $a_val;
249 $a_item->setParentForm($this);
250 return $this->items[] = $a_item;
260 foreach ($this->items as $key => $item)
262 if (method_exists($item,
"getPostVar") && $item->getPostVar() == $a_post_var)
264 unset($this->items[$key]);
276 foreach ($this->items as $key => $item)
278 if ($item->getType() !=
"section_header")
281 $ret = $item->getItemByPostVar($a_post_var);
299 $this->items = $a_items;
320 $inputItems = array();
322 foreach($this->items as $item)
324 if( $item->getType() ==
'section_header' )
329 $inputItems[] = $item;
333 $inputItems = array_merge( $inputItems, $item->getSubInputItemsRecursive() );
347 $this->disable_standard_message = $a_val;
377 $this->hide_labels = $a_value;
387 foreach($this->items as $item)
389 $item->setValueByArray($a_values);
399 foreach($this->items as $item)
401 $item->setValueByArray(
$_POST);
415 if ($this->check_input_called)
417 die (
"Error: ilPropertyFormGUI->checkInput() called twice.");
421 foreach($this->items as $item)
423 $item_ok = $item->checkInput();
431 if (count($this->items) > 0 && !is_array(
$_POST))
436 $this->check_input_called =
true;
441 if(!
$ok &&
$_POST[
"ilfilehash"] &&
sizeof($_FILES))
443 $hash =
$_POST[
"ilfilehash"];
445 foreach($_FILES as $field =>
$data)
448 if(is_array(
$data[
"tmp_name"]))
450 foreach(
$data[
"tmp_name"] as $idx => $upload)
452 if(is_array($upload))
454 foreach($upload as $idx2 =>
$file)
458 $file_name =
$data[
"name"][$idx][$idx2];
459 $file_type =
$data[
"type"][$idx][$idx2];
464 else if($upload && is_uploaded_file($upload))
466 $file_name =
$data[
"name"][$idx];
467 $file_type =
$data[
"type"][$idx];
468 $this->
keepFileUpload($hash, $field, $upload, $file_name, $file_type, $idx);
497 public function getInput($a_post_var, $ensureValidation =
true)
500 if (!$this->check_input_called && $ensureValidation)
502 die (
"Error: ilPropertyFormGUI->getInput() called without calling checkInput() first.");
505 return $_POST[$a_post_var];
518 $a_alert =
"", $a_required =
false)
520 $this->properties[] = array (
"type" =>
"custom",
534 $this->buttons[] = array(
"cmd" => $a_cmd,
"text" => $a_text);
542 $this->buttons = array();
552 include_once(
"./Services/YUI/classes/class.ilYuiUtil.php");
557 $tpl->addJavaScript(
"./Services/JavaScript/js/Basic.js");
558 $tpl->addJavaScript(
"Services/Form/js/Form.js");
560 $this->tpl =
new ilTemplate(
"tpl.property_form.html",
true,
true,
"Services/Form");
565 $fi = $this->items[0];
566 if ($this->
getMode() ==
"std" &&
568 is_object($fi) && $fi->getType() ==
"section_header" 572 unset($this->items[0]);
579 $this->tpl->setCurrentBlock(
"title_icon");
580 $this->tpl->setVariable(
"IMG_ICON", $this->
getTitleIcon());
581 $this->tpl->parseCurrentBlock();
591 foreach($this->buttons as $button)
593 $this->tpl->setCurrentBlock(
"cmd2");
594 $this->tpl->setVariable(
"CMD", $button[
"cmd"]);
595 $this->tpl->setVariable(
"CMD_TXT", $button[
"text"]);
596 $this->tpl->parseCurrentBlock();
598 $this->tpl->setCurrentBlock(
"commands2");
599 $this->tpl->parseCurrentBlock();
602 if (is_object($ilSetting))
604 if ($ilSetting->get(
'char_selector_availability') > 0)
606 require_once
'Services/UIComponent/CharSelector/classes/class.ilCharSelectorGUI.php';
612 $char_selector->addToPage();
613 $this->tpl->TouchBlock(
'char_selector');
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();
625 $this->tpl->touchBlock(
"item");
628 $this->required_text =
false;
629 foreach($this->items as $item)
631 if ($item->getType() !=
"hidden")
638 if ($this->required_text && $this->
getMode() ==
"std")
640 $this->tpl->setCurrentBlock(
"required_text");
641 $this->tpl->setVariable(
"TXT_REQUIRED", $lng->txt(
"required_field"));
642 $this->tpl->parseCurrentBlock();
646 foreach($this->buttons as $button)
648 $this->tpl->setCurrentBlock(
"cmd");
649 $this->tpl->setVariable(
"CMD", $button[
"cmd"]);
650 $this->tpl->setVariable(
"CMD_TXT", $button[
"text"]);
651 $this->tpl->parseCurrentBlock();
657 $hash =
$_POST[
"ilfilehash"];
660 $hash = md5(uniqid(mt_rand(),
true));
663 $fhash->setValue($hash);
668 $hidden_fields =
false;
669 foreach($this->items as $item)
671 if ($item->getType() ==
"hidden")
673 $item->insert($this->tpl);
674 $hidden_fields =
true;
678 if ($this->required_text || count($this->buttons) > 0 || $hidden_fields)
680 $this->tpl->setCurrentBlock(
"commands");
681 $this->tpl->parseCurrentBlock();
685 if ($this->
getMode() ==
"subform")
687 $this->tpl->touchBlock(
"sub_table");
691 $this->tpl->touchBlock(
"std_table");
692 $this->tpl->setVariable(
'STD_TABLE_WIDTH',$this->
getTableWidth());
695 return $this->tpl->get();
708 $tpl->addJavascript(
"./Services/Form/js/ServiceFormMulti.js");
710 $this->tpl->setCurrentBlock(
"multi_in");
711 $this->tpl->setVariable(
"ID", $item->getFieldId());
712 $this->tpl->parseCurrentBlock();
714 $this->tpl->touchBlock(
"multi_out");
719 $multi_values = $item->getMultiValues();
720 if(is_array($multi_values) &&
sizeof($multi_values) > 1)
723 $multi_value->
setValue(implode(
"~", $multi_values));
726 $cfg[
"multi_values"] = $multi_values;
729 $item->insert($this->tpl);
731 if ($item->getType() ==
"file" || $item->getType() ==
"image_file")
736 if ($item->getType() !=
"section_header")
738 $cfg[
"id"] = $item->getFieldId();
741 if ($item->getInfo() !=
"")
743 $this->tpl->setCurrentBlock(
"description");
744 $this->tpl->setVariable(
"PROPERTY_DESCRIPTION",
746 $this->tpl->parseCurrentBlock();
749 if ($this->
getMode() ==
"subform")
752 if ($item->getType() !=
"non_editable_value")
754 if ($item->getRequired())
756 $this->tpl->touchBlock(
"sub_required");
757 $this->required_text =
true;
762 if ($item->getHiddenTitle() !=
"")
764 $this->tpl->setCurrentBlock(
"sub_hid_title");
765 $this->tpl->setVariable(
"SPHID_TITLE",
766 $item->getHiddenTitle());
767 $this->tpl->parseCurrentBlock();
770 $this->tpl->setCurrentBlock(
"sub_prop_start");
771 $this->tpl->setVariable(
"PROPERTY_TITLE", $item->getTitle());
772 if ($item->getType() !=
"non_editable_value")
774 $this->tpl->setVariable(
"LAB_ID", $item->getFieldId());
776 $this->tpl->parseCurrentBlock();
781 if ($item->getType() !=
"non_editable_value")
783 if ($item->getRequired())
785 $this->tpl->touchBlock(
"required");
786 $this->required_text =
true;
791 if ($item->getHiddenTitle() !=
"")
793 $this->tpl->setCurrentBlock(
"std_hid_title");
794 $this->tpl->setVariable(
"PHID_TITLE",
795 $item->getHiddenTitle());
796 $this->tpl->parseCurrentBlock();
799 $this->tpl->setCurrentBlock(
"std_prop_start");
800 $this->tpl->setVariable(
"PROPERTY_TITLE", $item->getTitle());
801 if ($item->getType() !=
"non_editable_value")
803 $this->tpl->setVariable(
"LAB_ID", $item->getFieldId());
807 $this->tpl->setVariable(
"HIDE_LABELS_STYLE",
" ilFormOptionHidden");
809 $this->tpl->parseCurrentBlock();
813 if ($item->getType() !=
"non_editable_value" && $item->getAlert() !=
"")
815 $this->tpl->setCurrentBlock(
"alert");
816 $this->tpl->setVariable(
"IMG_ALERT",
818 $this->tpl->setVariable(
"ALT_ALERT",
820 $this->tpl->setVariable(
"TXT_ALERT",
822 $this->tpl->parseCurrentBlock();
827 if ($item->getType() !=
"non_editable_value" or 1)
829 $sf = $item->getSubForm();
830 if ($item->hideSubForm() && is_object($sf))
832 $this->tpl->setCurrentBlock(
"sub_form_hide");
833 $this->tpl->setVariable(
"DSFID", $item->getFieldId());
834 $this->tpl->parseCurrentBlock();
842 $sf_content = $sf->getContent();
843 if ($sf->getMultipart())
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();
853 $this->tpl->setCurrentBlock(
"prop");
858 $this->tpl->parseCurrentBlock();
862 $this->tpl->touchBlock(
"item");
867 $html = parent::getHTML();
870 foreach($this->items as $item)
873 if(method_exists($item,
"getContentOutsideFormTag"))
875 $outside = $item->getContentOutsideFormTag();
903 protected function keepFileUpload($a_hash, $a_field, $a_tmp_name, $a_name, $a_type, $a_index = null, $a_sub_index = null)
907 $user_id = $ilUser->getId();
908 if(!$user_id || $user_id == ANONYMOUS_USER_ID)
913 $a_name = ilUtil::getAsciiFileName($a_name);
915 $tmp_file_name = implode(
"~~", array($user_id,
920 str_replace(
"/",
"~~", $a_type),
921 str_replace(
"~~",
"_", $a_name)));
925 if (!is_dir($temp_path))
930 move_uploaded_file($a_tmp_name, $temp_path.
"/".$tmp_file_name);
946 if($_FILES[$a_field][
"tmp_name"][$a_index][$a_sub_index])
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],
957 else if($this->reloaded_files[$a_field][
"tmp_name"][$a_index][$a_sub_index])
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],
969 else if($a_sub_index)
971 if($_FILES[$a_field][
"tmp_name"][$a_index])
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],
982 else if($this->reloaded_files[$a_field][
"tmp_name"][$a_index])
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],
996 if($_FILES[$a_field][
"tmp_name"])
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"],
1007 else if($this->reloaded_files[$a_field][
"tmp_name"])
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 1033 return (
bool)
$data[
"tmp_name"];
1046 function moveFileUpload($a_target_directory, $a_field, $a_target_name = null, $a_index = null, $a_sub_index = null)
1048 if(!is_dir($a_target_directory))
1054 if(
$data[
"tmp_name"] && file_exists(
$data[
"tmp_name"]))
1058 $data[
"name"] = $a_target_name;
1061 $target_file = $a_target_directory.
"/".
$data[
"name"];
1062 $target_file = str_replace(
"//",
"/", $target_file);
1064 if(
$data[
"is_upload"])
1066 if (!move_uploaded_file(
$data[
"tmp_name"], $target_file))
1073 if (!rename(
$data[
"tmp_name"], $target_file))
1079 return $target_file;
1092 $user_id = $ilUser->getId();
1094 if(is_dir($temp_path) && $user_id && $user_id != ANONYMOUS_USER_ID)
1098 $temp_files = glob($temp_path.
"/".$ilUser->getId().
"~~".
$_POST[
"ilfilehash"].
"~~*");
1099 if(is_array($temp_files))
1101 foreach($temp_files as $full_file)
1103 $file = explode(
"~~", basename($full_file));
1112 if(!$_FILES[$field][
"tmp_name"][$idx][$idx2])
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);
1123 if(!$_FILES[$field][
"tmp_name"][$idx])
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);
1134 if(!$_FILES[$field][
"tmp_name"])
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);
1146 $this->reloaded_files = $reload;
static _isAllowed()
Check if the CharSelector is allowed for the current GUI.
static initAnimation()
Init YUI Animation.
static initDom()
Init YUI Dom.
static getImagePath($img, $module_path="", $mode="output", $offline=false)
get image path (for images located in a template directory)
special template class to simplify handling of ITX/PEAR
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
static initEvent()
Init YUI Event.
static sendFailure($a_info="", $a_keep=false)
Send Failure Message to Screen.
Interface for multi values support.
while($lm_rec=$ilDB->fetchAssoc($lm_set)) $data
static getDataDir()
get data directory (outside webspace)
if($_REQUEST['ilias_path']) define('ILIAS_HTTP_PATH' $_REQUEST['ilias_path']