ILIAS  release_5-4 Revision v5.4.26-12-gabc799a52e6
ilDclReferenceFieldRepresentation Class Reference

Class ilDclTextFieldRepresentation. More...

+ Inheritance diagram for ilDclReferenceFieldRepresentation:
+ Collaboration diagram for ilDclReferenceFieldRepresentation:

Public Member Functions

 getInputField (ilPropertyFormGUI $form, $record_id=0)
 Returns field-input. More...
 
 addFilterInputFieldToTable (ilTable2GUI $table)
 Add filter input to TableGUI. More...
 
 passThroughFilter (ilDclBaseRecordModel $record, $filter)
 Checks if a filter affects a record. More...
 
 buildFieldCreationInput (ilObjDataCollection $dcl, $mode='create')
 @inheritDoc More...
 
- Public Member Functions inherited from ilDclBaseFieldRepresentation
 __construct (ilDclBaseFieldModel $field)
 
 addFilterInputFieldToTable (ilTable2GUI $table)
 Add filter input to TableGUI. More...
 
 passThroughFilter (ilDclBaseRecordModel $record, $filter)
 Checks if a filter affects a record. More...
 
 parseSortingValue ($value, $link=true)
 
 getInputField (ilPropertyFormGUI $form, $record_id=0)
 Returns field-input. More...
 
 addFieldCreationForm ($form, ilObjDataCollection $dcl, $mode="create")
 Adds the options for the field-types to the field-creation form. More...
 
 getPropertyInputFieldId ($property)
 Return post-var for property-fields. More...
 
 getField ()
 Return BaseFieldModel. More...
 

Data Fields

const REFERENCE_SEPARATOR = " -> "
 

Additional Inherited Members

- Protected Member Functions inherited from ilDclBaseFieldRepresentation
 setupFilterInputField (ilFormPropertyGUI $input)
 Set basic settings for filter-input-gui. More...
 
 setupInputField (ilFormPropertyGUI $input, ilDclBaseFieldModel $field)
 Sets basic settings on field-input. More...
 
 getFilterInputFieldValue ( $input)
 
 buildFieldCreationInput (ilObjDataCollection $dcl, $mode='create')
 Build the creation-input-field. More...
 
- Protected Attributes inherited from ilDclBaseFieldRepresentation
 $field
 
 $lng
 
 $ctrl
 

Detailed Description

Member Function Documentation

◆ addFilterInputFieldToTable()

ilDclReferenceFieldRepresentation::addFilterInputFieldToTable ( ilTable2GUI  $table)

Add filter input to TableGUI.

Parameters
ilTable2GUI$table
Returns
null

Reimplemented from ilDclBaseFieldRepresentation.

Definition at line 92 of file class.ilDclReferenceFieldRepresentation.php.

93 {
94 $input = $table->addFilterItemByMetaType("filter_" . $this->getField()->getId(), ilTable2GUI::FILTER_SELECT, false, $this->getField()->getId());
95 $ref_field_id = $this->getField()->getProperty(ilDclBaseFieldModel::PROP_REFERENCE);
96 $ref_field = ilDclCache::getFieldCache($ref_field_id);
97 $ref_table = ilDclCache::getTableCache($ref_field->getTableId());
98 $options = array();
99 foreach ($ref_table->getRecords() as $record) {
100 $options[$record->getId()] = $record->getRecordFieldPlainText($ref_field_id);
101 }
102 // Sort by values ASC
103 asort($options);
104 $options = array('' => $this->lng->txt('dcl_any')) + $options;
105 $input->setOptions($options);
106
108
109 return $this->getFilterInputFieldValue($input);
110 }
setupFilterInputField(ilFormPropertyGUI $input)
Set basic settings for filter-input-gui.
static getTableCache($table_id=0)
static getFieldCache($field_id=0)
if(empty($password)) $table
Definition: pwgen.php:24

References $input, PHPMailer\PHPMailer\$options, $table, ilTable2GUI\FILTER_SELECT, ilDclBaseFieldRepresentation\getField(), ilDclCache\getFieldCache(), ilDclBaseFieldRepresentation\getFilterInputFieldValue(), ilDclCache\getTableCache(), ilDclBaseFieldModel\PROP_REFERENCE, and ilDclBaseFieldRepresentation\setupFilterInputField().

+ Here is the call graph for this function:

◆ buildFieldCreationInput()

ilDclReferenceFieldRepresentation::buildFieldCreationInput ( ilObjDataCollection  $dcl,
  $mode = 'create' 
)

@inheritDoc

Reimplemented from ilDclBaseFieldRepresentation.

Definition at line 132 of file class.ilDclReferenceFieldRepresentation.php.

133 {
134 $opt = parent::buildFieldCreationInput($dcl, $mode);
135
136 $options = array();
137 // Get Tables
138 $tables = $dcl->getTables();
139 foreach ($tables as $table) {
140 foreach ($table->getRecordFields() as $field) {
141 //referencing references may lead to endless loops.
142 if ($field->getDatatypeId() != ilDclDatatype::INPUTFORMAT_REFERENCE) {
143 $options[$field->getId()] = $table->getTitle() . self::REFERENCE_SEPARATOR . $field->getTitle();
144 }
145 }
146 }
147 $prop_table_selection = new ilSelectInputGUI($this->lng->txt('dcl_reference_title'), 'prop_' . ilDclBaseFieldModel::PROP_REFERENCE);
148 $prop_table_selection->setOptions($options);
149
150 $opt->addSubItem($prop_table_selection);
151
152 $prop_ref_link = new ilDclCheckboxInputGUI($this->lng->txt('dcl_reference_link'), 'prop_' . ilDclBaseFieldModel::PROP_REFERENCE_LINK);
153 $prop_ref_link->setInfo($this->lng->txt('dcl_reference_link_info'));
154 $opt->addSubItem($prop_ref_link);
155
156 $prop_multi_select = new ilDclCheckboxInputGUI($this->lng->txt('dcl_multiple_selection'), 'prop_' . ilDclBaseFieldModel::PROP_N_REFERENCE);
157 $opt->addSubItem($prop_multi_select);
158
159 return $opt;
160 }
Class ilDclCheckboxInputGUI.
This class represents a selection list property in a property form.

References ilDclBaseFieldRepresentation\$field, PHPMailer\PHPMailer\$options, $table, ilObjDataCollection\getTables(), ilDclDatatype\INPUTFORMAT_REFERENCE, ilDclBaseFieldModel\PROP_N_REFERENCE, ilDclBaseFieldModel\PROP_REFERENCE, and ilDclBaseFieldModel\PROP_REFERENCE_LINK.

+ Here is the call graph for this function:

◆ getInputField()

ilDclReferenceFieldRepresentation::getInputField ( ilPropertyFormGUI  $form,
  $record_id = 0 
)

Returns field-input.

Parameters
ilPropertyFormGUI$form
int$record_id
Returns
null

Reimplemented from ilDclBaseFieldRepresentation.

Definition at line 14 of file class.ilDclReferenceFieldRepresentation.php.

15 {
16 if (!$this->getField()->getProperty(ilDclBaseFieldModel::PROP_N_REFERENCE)) {
17 $input = new ilSelectInputGUI($this->getField()->getTitle(), 'field_' . $this->getField()->getId());
18 } else {
19 $input = new ilMultiSelectInputGUI($this->getField()->getTitle(), 'field_' . $this->getField()->getId());
20 $input->setWidth(100);
21 $input->setWidthUnit('%');
22 }
23
24 $this->setupInputField($input, $this->getField());
25
26 $fieldref = $this->getField()->getProperty(ilDclBaseFieldModel::PROP_REFERENCE);
27
28 $reffield = ilDclCache::getFieldCache($fieldref);
29 $options = array();
30 if (!$this->getField()->getProperty(ilDclBaseFieldModel::PROP_N_REFERENCE)) {
31 $options[""] = $this->lng->txt('dcl_please_select');
32 }
33 $reftable = ilDclCache::getTableCache($reffield->getTableId());
34 foreach ($reftable->getRecords() as $record) {
35 // If the referenced field is MOB or FILE, we display the filename in the dropdown
36 switch ($reffield->getDatatypeId()) {
38 $file_obj = new ilObjFile($record->getRecordFieldValue($fieldref), false);
39 $options[$record->getId()] = $file_obj->getFileName();
40 break;
42 $media_obj = new ilObjMediaObject($record->getRecordFieldValue($fieldref), false);
43 $options[$record->getId()] = $media_obj->getTitle();
44 break;
46 $options[$record->getId()] = strtotime($record->getRecordFieldSingleHTML($fieldref));
47 // TT #0019091: options2 are the actual values, options the timestamp for sorting
48 $options2[$record->getId()] = $record->getRecordFieldSingleHTML($fieldref);
49 break;
51 $value = $record->getRecordFieldValue($fieldref);
52 if ($record->getRecordField($fieldref)->getField()->hasProperty(ilDclBaseFieldModel::PROP_URL)) {
53 if (!is_array($value)) {
54 $value = array('title' => '', 'link' => $value);
55 }
56 $value = $value['title'] ? $value['title'] : $value['link'];
57 }
58 $options[$record->getId()] = $value;
59 break;
61 $options[$record->getId()] = $record->getRecordFieldRepresentationValue($fieldref);
62 break;
63 default:
64 $options[$record->getId()] = $record->getRecordFieldExportValue($fieldref);
65 break;
66 }
67 }
68 asort($options);
69
70 // TT #0019091: restore the actual values after sorting with timestamp
71 if ($reffield->getDatatypeId() == ilDclDatatype::INPUTFORMAT_DATETIME) {
72 foreach ($options as $key => $opt) {
73 $options[$key] = $options2[$key];
74 }
75 // the option 'please select' messes with the order, therefore we reset it
76 unset($options[""]);
77 $options = array("" => $this->lng->txt('dcl_please_select')) + $options;
78 }
79
80 $input->setOptions($options);
81
82 if (ilObjDataCollectionAccess::hasPermissionToAddRecord($_GET['ref_id'], $reftable->getId())) {
83 $input->addCustomAttribute('data-ref="1"');
84 $input->addCustomAttribute('data-ref-table-id="' . $reftable->getId() . '"');
85 $input->addCustomAttribute('data-ref-field-id="' . $reffield->getId() . '"');
86 }
87
88 return $input;
89 }
$_GET["client_id"]
setupInputField(ilFormPropertyGUI $input, ilDclBaseFieldModel $field)
Sets basic settings on field-input.
This class represents a multi selection list property in a property form.
static hasPermissionToAddRecord($ref_id, $table_id)
Class ilObjFile.
Class ilObjMediaObject.
$key
Definition: croninfo.php:18

References $_GET, $input, $key, PHPMailer\PHPMailer\$options, ilDclBaseFieldRepresentation\getField(), ilDclCache\getFieldCache(), ilDclCache\getTableCache(), ilObjDataCollectionAccess\hasPermissionToAddRecord(), ilDclDatatype\INPUTFORMAT_DATETIME, ilDclDatatype\INPUTFORMAT_FILE, ilDclDatatype\INPUTFORMAT_ILIAS_REF, ilDclDatatype\INPUTFORMAT_MOB, ilDclDatatype\INPUTFORMAT_TEXT, ilDclBaseFieldModel\PROP_N_REFERENCE, ilDclBaseFieldModel\PROP_REFERENCE, ilDclBaseFieldModel\PROP_URL, and ilDclBaseFieldRepresentation\setupInputField().

+ Here is the call graph for this function:

◆ passThroughFilter()

ilDclReferenceFieldRepresentation::passThroughFilter ( ilDclBaseRecordModel  $record,
  $filter 
)

Checks if a filter affects a record.

Parameters
ilDclBaseRecordModel$record
$filter
Returns
bool

Reimplemented from ilDclBaseFieldRepresentation.

Definition at line 113 of file class.ilDclReferenceFieldRepresentation.php.

114 {
115 $value = $record->getRecordFieldValue($this->getField()->getId());
116
117 $pass = false;
118 if ($filter && $this->getField()->getProperty(ilDclBaseFieldModel::PROP_N_REFERENCE) && is_array($value) && in_array($filter, $value)) {
119 $pass = true;
120 }
121 if (!$filter || $filter == $value) {
122 $pass = true;
123 }
124
125 return $pass;
126 }
getRecordFieldValue($field_id)
Get Field Value.

References $pass, ilDclBaseFieldRepresentation\getField(), ilDclBaseRecordModel\getRecordFieldValue(), and ilDclBaseFieldModel\PROP_N_REFERENCE.

+ Here is the call graph for this function:

Field Documentation

◆ REFERENCE_SEPARATOR

const ilDclReferenceFieldRepresentation::REFERENCE_SEPARATOR = " -> "

Definition at line 11 of file class.ilDclReferenceFieldRepresentation.php.


The documentation for this class was generated from the following file: