ILIAS  release_5-3 Revision v5.3.23-19-g915713cf615
class.ilDclReferenceFieldRepresentation.php
Go to the documentation of this file.
1<?php
2
10{
11 const REFERENCE_SEPARATOR = " -> ";
12
13 public function getInputField(ilPropertyFormGUI $form, $record_id = 0)
14 {
15 if (!$this->getField()->getProperty(ilDclBaseFieldModel::PROP_N_REFERENCE)) {
16 $input = new ilSelectInputGUI($this->getField()->getTitle(), 'field_' . $this->getField()->getId());
17 } else {
18 $input = new ilMultiSelectInputGUI($this->getField()->getTitle(), 'field_' . $this->getField()->getId());
19 $input->setWidth(100);
20 $input->setWidthUnit('%');
21 }
22
23 $this->setupInputField($input, $this->getField());
24
25 $fieldref = $this->getField()->getProperty(ilDclBaseFieldModel::PROP_REFERENCE);
26
27 $reffield = ilDclCache::getFieldCache($fieldref);
28 $options = array();
29 if (!$this->getField()->getProperty(ilDclBaseFieldModel::PROP_N_REFERENCE)) {
30 $options[""] = $this->lng->txt('dcl_please_select');
31 }
32 $reftable = ilDclCache::getTableCache($reffield->getTableId());
33 foreach ($reftable->getRecords() as $record) {
34 // If the referenced field is MOB or FILE, we display the filename in the dropdown
35 switch ($reffield->getDatatypeId()) {
37 $file_obj = new ilObjFile($record->getRecordFieldValue($fieldref), false);
38 $options[$record->getId()] = $file_obj->getFileName();
39 break;
41 $media_obj = new ilObjMediaObject($record->getRecordFieldValue($fieldref), false);
42 $options[$record->getId()] = $media_obj->getTitle();
43 break;
45 $options[$record->getId()] = strtotime($record->getRecordFieldSingleHTML($fieldref));
46 // TT #0019091: options2 are the actual values, options the timestamp for sorting
47 $options2[$record->getId()] = $record->getRecordFieldSingleHTML($fieldref);
48 break;
50 $value = $record->getRecordFieldValue($fieldref);
51 if ($record->getRecordField($fieldref)->getField()->hasProperty(ilDclBaseFieldModel::PROP_URL)) {
52 if (!is_array($value)) {
53 $value = array('title' => '', 'link' => $value);
54 }
55 $value = $value['title'] ? $value['title'] : $value['link'];
56 }
57 $options[$record->getId()] = $value;
58 break;
60 $options[$record->getId()] = $record->getRecordFieldRepresentationValue($fieldref);
61 break;
62 default:
63 $options[$record->getId()] = $record->getRecordFieldExportValue($fieldref);
64 break;
65 }
66 }
67 asort($options);
68
69 // TT #0019091: restore the actual values after sorting with timestamp
70 if ($reffield->getDatatypeId() == ilDclDatatype::INPUTFORMAT_DATETIME) {
71 foreach ($options as $key => $opt) {
72 $options[$key] = $options2[$key];
73 }
74 // the option 'please select' messes with the order, therefore we reset it
75 unset($options[""]);
76 $options = array("" => $this->lng->txt('dcl_please_select')) + $options;
77 }
78
79 $input->setOptions($options);
80
81 if (ilObjDataCollectionAccess::hasPermissionToAddRecord($_GET['ref_id'], $reftable->getId())) {
82 $input->addCustomAttribute('data-ref="1"');
83 $input->addCustomAttribute('data-ref-table-id="' . $reftable->getId() . '"');
84 $input->addCustomAttribute('data-ref-field-id="' . $reffield->getId() . '"');
85 }
86
87 return $input;
88 }
89
91 {
92 $input = $table->addFilterItemByMetaType("filter_" . $this->getField()->getId(), ilTable2GUI::FILTER_SELECT, false, $this->getField()->getId());
93 $ref_field_id = $this->getField()->getProperty(ilDclBaseFieldModel::PROP_REFERENCE);
94 $ref_field = ilDclCache::getFieldCache($ref_field_id);
95 $ref_table = ilDclCache::getTableCache($ref_field->getTableId());
96 $options = array();
97 foreach ($ref_table->getRecords() as $record) {
98 $options[$record->getId()] = $record->getRecordFieldPlainText($ref_field_id);
99 }
100 // Sort by values ASC
101 asort($options);
102 $options = array('' => $this->lng->txt('dcl_any')) + $options;
103 $input->setOptions($options);
104
105 $this->setupFilterInputField($input);
106
107 return $this->getFilterInputFieldValue($input);
108 }
109
110
111 public function passThroughFilter(ilDclBaseRecordModel $record, $filter)
112 {
113 $value = $record->getRecordFieldValue($this->getField()->getId());
114
115 $pass = false;
116 if ($filter && $this->getField()->getProperty(ilDclBaseFieldModel::PROP_N_REFERENCE) && is_array($value) && in_array($filter, $value)) {
117 $pass = true;
118 }
119 if (!$filter || $filter == $value) {
120 $pass = true;
121 }
122
123 return $pass;
124 }
125
129 public function buildFieldCreationInput(ilObjDataCollection $dcl, $mode = 'create')
130 {
131 $opt = parent::buildFieldCreationInput($dcl, $mode);
132
133 $options = array();
134 // Get Tables
135 $tables = $dcl->getTables();
136 foreach ($tables as $table) {
137 foreach ($table->getRecordFields() as $field) {
138 //referencing references may lead to endless loops.
139 if ($field->getDatatypeId() != ilDclDatatype::INPUTFORMAT_REFERENCE) {
140 $options[$field->getId()] = $table->getTitle() . self::REFERENCE_SEPARATOR . $field->getTitle();
141 }
142 }
143 }
144 $prop_table_selection = new ilSelectInputGUI($this->lng->txt('dcl_reference_title'), 'prop_' . ilDclBaseFieldModel::PROP_REFERENCE);
145 $prop_table_selection->setOptions($options);
146
147 $opt->addSubItem($prop_table_selection);
148
149 $prop_ref_link = new ilDclCheckboxInputGUI($this->lng->txt('dcl_reference_link'), 'prop_' . ilDclBaseFieldModel::PROP_REFERENCE_LINK);
150 $prop_ref_link->setInfo($this->lng->txt('dcl_reference_link_info'));
151 $opt->addSubItem($prop_ref_link);
152
153 $prop_multi_select = new ilDclCheckboxInputGUI($this->lng->txt('dcl_multiple_selection'), 'prop_' . ilDclBaseFieldModel::PROP_N_REFERENCE);
154 $opt->addSubItem($prop_multi_select);
155
156 return $opt;
157 }
158}
if(!isset( $_REQUEST[ 'ReturnTo'])) if(!isset($_REQUEST['AuthId'])) $options
Definition: as_login.php:20
$_GET["client_id"]
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 getTableCache($table_id=0)
static getFieldCache($field_id=0)
Class ilDclCheckboxInputGUI.
passThroughFilter(ilDclBaseRecordModel $record, $filter)
Checks if a filter affects a record.
getInputField(ilPropertyFormGUI $form, $record_id=0)
Returns field-input.
addFilterInputFieldToTable(ilTable2GUI $table)
Add filter input to TableGUI.
buildFieldCreationInput(ilObjDataCollection $dcl, $mode='create')
@inheritDoc
This class represents a multi selection list property in a property form.
static hasPermissionToAddRecord($ref_id, $table_id)
Class ilObjDataCollection.
Class ilObjFile.
Class ilObjMediaObject.
This class represents a property form user interface.
This class represents a selection list property in a property form.
Class ilTable2GUI.
$key
Definition: croninfo.php:18
if(empty($password)) $table
Definition: pwgen.php:24
if(isset($_POST['submit'])) $form