ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilDclBaseFieldRepresentation.php
Go to the documentation of this file.
1 <?php
2 
20 {
22  protected ilLanguage $lng;
23  protected ilCtrl $ctrl;
26 
29 
30  public function __construct(ilDclBaseFieldModel $field)
31  {
32  global $DIC;
33 
34  $this->field = $field;
35  $this->lng = $DIC->language();
36  $this->ctrl = $DIC->ctrl();
37  $this->http = $DIC->http();
38  $this->refinery = $DIC->refinery();
39  $this->component_repository = $DIC["component.repository"];
40  $this->component_factory = $DIC["component.factory"];
41  }
42 
48  public function addFilterInputFieldToTable(ilTable2GUI $table)
49  {
50  return null;
51  }
52 
56  protected function setupFilterInputField(?ilTableFilterItem $input): void
57  {
58  if ($input != null) {
59  $input->setTitle($this->getField()->getTitle());
60  }
61  }
62 
67  public function passThroughFilter(ilDclBaseRecordModel $record, $filter): bool
68  {
69  $value = $record->getRecordFieldValue($this->getField()->getId());
70  $pass = true;
71 
72  if (($this->getField()->getId() == "owner" || $this->getField()->getId() == "last_edit_by") && $filter) {
73  $pass = false;
74  $user = new ilObjUser($value);
75  if (strpos($user->getFullname(), $filter) !== false) {
76  $pass = true;
77  }
78  }
79 
80  return $pass;
81  }
82 
87  public function parseSortingValue(string $value, bool $link = true)
88  {
89  return $value;
90  }
91 
95  public function getInputField(ilPropertyFormGUI $form, ?int $record_id = null): ?ilFormPropertyGUI
96  {
97  return null;
98  }
99 
105  protected function setupInputField(ilFormPropertyGUI $input, ilDclBaseFieldModel $field): void
106  {
107  $input->setInfo($field->getDescription() . ($input->getInfo() ? '<br>' . $input->getInfo() : ''));
108  }
109 
113  protected function getFilterInputFieldValue(
114  ilTableFilterItem $input
115  ) {
116  $value = $input->getValue();
117  if (is_array($value)) {
118  if ($value['from'] || $value['to']) {
119  return $value;
120  }
121  } else {
122  if ($value != '') {
123  return $value;
124  }
125  }
126 
127  return null;
128  }
129 
133  public function addFieldCreationForm(
135  ilObjDataCollection $dcl,
136  string $mode = "create"
137  ): void {
138  $opt = $this->buildFieldCreationInput($dcl, $mode);
139  if ($opt !== null) {
140  $form->addOption($opt);
141  }
142  }
143 
147  protected function buildFieldCreationInput(ilObjDataCollection $dcl, string $mode = 'create'): ?ilRadioOption
148  {
149  $opt = null;
150  if ($this->getField()->getDatatypeId() !== null) {
151  $title = $this->field->getPresentationTitle();
152  $info = $this->field->getPresentationDescription();
153  $opt = new ilRadioOption($title, (string) $this->getField()->getDatatypeId());
154  $opt->setInfo($info);
155  }
156 
157  return $opt;
158  }
159 
163  public function getPropertyInputFieldId(string $property): string
164  {
165  return "prop_" . $property;
166  }
167 
171  public function getField(): ilDclBaseFieldModel
172  {
173  return $this->field;
174  }
175 }
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...
Readable part of repository interface to ilComponentDataDB.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
passThroughFilter(ilDclBaseRecordModel $record, $filter)
Checks if a filter affects a record.
parseSortingValue(string $value, bool $link=true)
getInputField(ilPropertyFormGUI $form, ?int $record_id=null)
Returns field-input.
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.
global $DIC
Definition: feed.php:28
getRecordFieldValue(?int $field_id)
Get Field Value.
static http()
Fetches the global http state from ILIAS.
getPropertyInputFieldId(string $property)
Return post-var for property-fields.
addFieldCreationForm(ilSubEnabledFormPropertyGUI $form, ilObjDataCollection $dcl, string $mode="create")
Adds the options for the field-types to the field-creation form.
addFilterInputFieldToTable(ilTable2GUI $table)
Add filter input to TableGUI.
setupFilterInputField(?ilTableFilterItem $input)
Set basic settings for filter-input-gui.
buildFieldCreationInput(ilObjDataCollection $dcl, string $mode='create')
Build the creation-input-field.
getDescription()
Get description.
This class represents a property in a property form.
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...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...