ILIAS  release_5-4 Revision v5.4.26-12-gabc799a52e6
class.ilDclFileuploadFieldRepresentation.php
Go to the documentation of this file.
1<?php
2
10{
11
15 public function getInputField(ilPropertyFormGUI $form, $record_id = 0)
16 {
17 $input = new ilFileInputGUI($this->getField()->getTitle(), 'field_' . $this->getField()->getId());
18 $input->setSuffixes($this->getField()->getSupportedExtensions());
19 $input->setAllowDeletion(true);
20
21 $this->requiredWorkaroundForInputField($input, $record_id);
22
23 return $input;
24 }
25
26
27 protected function requiredWorkaroundForInputField($input, $record_id)
28 {
29 if ($record_id) {
30 $record = ilDclCache::getRecordCache($record_id);
31 }
32
33 $this->setupInputField($input, $this->getField());
34
35 //WORKAROUND
36 // If field is from type file: if it's required but already has a value it is no longer required as the old value is taken as default without the form knowing about it.
37 if ($record_id && $record->getId()) {
38 $field_value = $record->getRecordFieldValue($this->getField()->getId());
39 if ($field_value) {
40 $input->setRequired(false);
41 }
42 }
43 // If this is an ajax request to return the form, input files are currently not supported
44 if ($this->ctrl->isAsynch()) {
45 $input->setDisabled(true);
46 }
47 }
48
49
54 {
55 $input = $table->addFilterItemByMetaType("filter_" . $this->getField()->getId(), ilTable2GUI::FILTER_TEXT, false, $this->getField()->getId());
56 $input->setSubmitFormOnEnter(true);
57
59
60 return $this->getFilterInputFieldValue($input);
61 }
62
63
67 public function passThroughFilter(ilDclBaseRecordModel $record, $filter)
68 {
69 $value = $record->getRecordFieldValue($this->getField()->getId());
70 $pass = false;
71 if (!ilObject2::_exists($value) || ilObject2::_lookupType($value, false) != "file") {
72 $pass = true;
73 }
74
75 $file_obj = new ilObjFile($value, false);
76 $file_name = $file_obj->getTitle();
77 if (!$filter || strpos(strtolower($file_name), strtolower($filter)) !== false) {
78 $pass = true;
79 }
80
81 return $pass;
82 }
83
84
88 public function buildFieldCreationInput(ilObjDataCollection $dcl, $mode = 'create')
89 {
90 $opt = parent::buildFieldCreationInput($dcl, $mode);
91
92 $prop_filetype = new ilTextInputGUI($this->lng->txt('dcl_supported_filetypes'), 'prop_' . ilDclBaseFieldModel::PROP_SUPPORTED_FILE_TYPES);
93 $prop_filetype->setInfo($this->lng->txt('dcl_supported_filetypes_desc'));
94
95 $opt->addSubItem($prop_filetype);
96
97 return $opt;
98 }
99}
An exception for terminatinating execution or to throw for unit testing.
Class ilDclBaseFieldRepresentation.
setupInputField(ilFormPropertyGUI $input, ilDclBaseFieldModel $field)
Sets basic settings on field-input.
setupFilterInputField(ilFormPropertyGUI $input)
Set basic settings for filter-input-gui.
Class ilDclBaseRecordModel.
getRecordFieldValue($field_id)
Get Field Value.
static getRecordCache($record_id=0)
passThroughFilter(ilDclBaseRecordModel $record, $filter)
Checks if a filter affects a record.bool
addFilterInputFieldToTable(ilTable2GUI $table)
Add filter input to TableGUI.null
buildFieldCreationInput(ilObjDataCollection $dcl, $mode='create')
@inheritDoc
getInputField(ilPropertyFormGUI $form, $record_id=0)
Returns field-input.null
This class represents a file property in a property form.
Class ilObjDataCollection.
Class ilObjFile.
static _lookupType($a_id, $a_reference=false)
lookup object type
static _exists($a_id, $a_reference=false, $a_type=null)
checks if an object exists in object_data@access public
This class represents a property form user interface.
Class ilTable2GUI.
This class represents a text property in a property form.
if(empty($password)) $table
Definition: pwgen.php:24
if(isset($_POST['submit'])) $form