34 $input->setWidth(100);
35 $input->setWidthUnit(
'%');
45 $options[
""] = $this->
lng->txt(
'dcl_please_select');
48 foreach ($reftable->getRecords() as $record) {
50 switch ($reffield->getDatatypeId()) {
52 $field_value = $record->getRecordFieldValue($fieldref);
54 $file_obj =
new ilObjFile($field_value,
false);
55 $options[$record->getId()] = $file_obj->getFileName();
60 $options[$record->getId()] = $media_obj->
getTitle();
63 $options[$record->getId()] = strtotime($record->getRecordFieldSingleHTML($fieldref));
65 $options2[$record->getId()] = $record->getRecordFieldSingleHTML($fieldref);
68 $value = $record->getRecordFieldValue($fieldref);
70 if (!is_array($value)) {
71 $value = [
'title' =>
'',
'link' => $value];
73 $value = $value[
'title'] ?: $value[
'link'];
75 $options[$record->getId()] = $value;
78 $options[$record->getId()] = $record->getRecordFieldRepresentationValue($fieldref);
81 $options[$record->getId()] = $record->getRecordFieldExportValue($fieldref);
85 asort($options, SORT_NATURAL | SORT_FLAG_CASE);
89 foreach ($options as
$key => $opt) {
96 $options = [
"" => $this->
lng->txt(
'dcl_please_select')] + $options;
99 $input->setOptions($options);
101 $ref_id = $this->
http->wrapper()->query()->retrieve(
'ref_id', $this->
refinery->kindlyTo()->int());
104 $input->addCustomAttribute(
'data-ref="1"');
105 $input->addCustomAttribute(
'data-ref-table-id="' . $reftable->getId() .
'"');
106 $input->addCustomAttribute(
'data-ref-field-id="' . $reffield->getId() .
'"');
127 foreach ($ref_table->getRecords() as $record) {
128 $options[$record->getId()] = $record->getRecordFieldPlainText($ref_field_id);
132 $options = [
'' => $this->
lng->txt(
'dcl_all_entries')]
134 + [
'none' => $this->
lng->txt(
'dcl_no_entry')];
135 $input->setOptions($options);
156 if (!$filter || $filter == $value) {
165 $opt = parent::buildFieldCreationInput($dcl, $mode);
170 foreach ($tables as $table) {
171 foreach ($table->getRecordFields() as
$field) {
179 $this->
lng->txt(
'dcl_reference_title'),
182 $prop_table_selection->setOptions($options);
184 $opt->addSubItem($prop_table_selection);
187 $this->
lng->txt(
'dcl_reference_link'),
190 $prop_ref_link->
setInfo($this->
lng->txt(
'dcl_reference_link_info'));
191 $opt->addSubItem($prop_ref_link);
194 $this->
lng->txt(
'dcl_multiple_selection'),
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
const PROP_REFERENCE_LINK
ilDclBaseFieldModel $field
const REFERENCE_SEPARATOR
addFilterInputFieldToTable(ilTable2GUI $table)
buildFieldCreationInput(ilObjDataCollection $dcl, string $mode='create')
static getFieldCache(int $field_id=0)
getFilterInputFieldValue(ilTableFilterItem $input)
passThroughFilter(ilDclBaseRecordModel $record, $filter)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
setupInputField(ilFormPropertyGUI $input, ilDclBaseFieldModel $field)
Sets basic settings on field-input.
getRecordFieldValue(?int $field_id)
Get Field Value.
addFilterItemByMetaType(string $id, int $type=self::FILTER_TEXT, bool $a_optional=false, string $caption="")
Add filter by standard type.
static http()
Fetches the global http state from ILIAS.
static getTableCache(int $table_id=null)
const INPUTFORMAT_DATETIME
const INPUTFORMAT_ILIAS_REF
setupFilterInputField(?ilTableFilterItem $input)
Set basic settings for filter-input-gui.
const INPUTFORMAT_REFERENCE
getField()
Return BaseFieldModel.
getInputField(ilPropertyFormGUI $form, ?int $record_id=null)
static hasPermissionToAddRecord(int $ref_id, int $table_id)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getDatatypeId()
Get datatype_id.