19 declare(strict_types=1);
36 $input->setWidth(100);
37 $input->setWidthUnit(
'%');
47 $options[
""] = $this->
lng->txt(
'dcl_please_select');
50 foreach ($reftable->getRecords() as $record) {
52 switch ($reffield->getDatatypeId()) {
54 $field_value = $record->getRecordFieldValue($fieldref);
56 $file_obj =
new ilObjFile($field_value,
false);
57 $options[$record->getId()] = $file_obj->getFileName();
62 $options[$record->getId()] = $media_obj->
getTitle();
65 $options[$record->getId()] = strtotime($record->getRecordFieldSingleHTML($fieldref));
67 $options2[$record->getId()] = $record->getRecordFieldSingleHTML($fieldref);
70 $value = $record->getRecordFieldValue($fieldref);
72 if (!is_array($value)) {
73 $value = [
'title' =>
'',
'link' => $value];
75 $value = $value[
'title'] ?: $value[
'link'];
77 $options[$record->getId()] = $value;
80 $options[$record->getId()] = $record->getRecordFieldRepresentationValue($fieldref);
83 $options[$record->getId()] = $record->getRecordFieldExportValue($fieldref);
87 asort($options, SORT_NATURAL | SORT_FLAG_CASE);
91 foreach ($options as $key => $opt) {
92 if ($key !=
"" && isset($options2) && is_array($options2)) {
93 $options[$key] = $options2[$key];
98 $options = [
"" => $this->
lng->txt(
'dcl_please_select')] + $options;
101 $input->setOptions($options);
103 $ref_id = $this->
http->wrapper()->query()->retrieve(
'ref_id', $this->
refinery->kindlyTo()->int());
106 $input->addCustomAttribute(
'data-ref="1"');
107 $input->addCustomAttribute(
'data-ref-table-id="' . $reftable->getId() .
'"');
108 $input->addCustomAttribute(
'data-ref-field-id="' . $reffield->getId() .
'"');
129 foreach ($ref_table->getRecords() as $record) {
130 $options[$record->getId()] = $record->getRecordFieldPlainText($ref_field_id);
134 $options = [
'' => $this->
lng->txt(
'dcl_all_entries')]
136 + [
'none' => $this->
lng->txt(
'dcl_no_entry')];
137 $input->setOptions($options);
158 if (!$filter || $filter == $value) {
167 $opt = parent::buildFieldCreationInput($dcl, $mode);
172 foreach ($tables as $table) {
173 foreach ($table->getRecordFields() as
$field) {
181 $this->
lng->txt(
'dcl_reference_title'),
185 $prop_table_selection->setInfo($this->
lng->txt(
'dcl_reference_title_desc'));
187 $opt->addSubItem($prop_table_selection);
190 $this->
lng->txt(
'dcl_reference_link'),
193 $prop_ref_link->
setInfo($this->
lng->txt(
'dcl_reference_link_info'));
194 $opt->addSubItem($prop_ref_link);
197 $this->
lng->txt(
'dcl_multiple_selection'),
This class represents an option in a radio group.
const PROP_REFERENCE_LINK
ilDclBaseFieldModel $field
const REFERENCE_SEPARATOR
addFilterInputFieldToTable(ilTable2GUI $table)
buildFieldCreationInput(ilObjDataCollection $dcl, string $mode='create')
static getFieldCache(int $field_id=0)
getRecordFieldValue(?string $field_id)
Get Field Value.
getFilterInputFieldValue(ilTableFilterItem $input)
passThroughFilter(ilDclBaseRecordModel $record, $filter)
setupInputField(ilFormPropertyGUI $input, ilDclBaseFieldModel $field)
Sets basic settings on field-input.
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
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.
const INPUTFORMAT_FILEUPLOAD
getInputField(ilPropertyFormGUI $form, ?int $record_id=null)
static hasPermissionToAddRecord(int $ref_id, int $table_id)
getDatatypeId()
Get datatype_id.