ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilDclBaseFieldRepresentation.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 {
24  protected ilLanguage $lng;
25  protected ilCtrl $ctrl;
28 
31 
32  public function __construct(ilDclBaseFieldModel $field)
33  {
34  global $DIC;
35 
36  $this->field = $field;
37  $this->lng = $DIC->language();
38  $this->ctrl = $DIC->ctrl();
39  $this->http = $DIC->http();
40  $this->refinery = $DIC->refinery();
41  $this->component_repository = $DIC["component.repository"];
42  $this->component_factory = $DIC["component.factory"];
43  }
44 
50  public function addFilterInputFieldToTable(ilTable2GUI $table)
51  {
52  return null;
53  }
54 
58  protected function setupFilterInputField(?ilTableFilterItem $input): void
59  {
60  if ($input != null) {
61  $input->setTitle($this->getField()->getTitle());
62  }
63  }
64 
69  public function passThroughFilter(ilDclBaseRecordModel $record, $filter): bool
70  {
71  $value = $record->getRecordFieldValue($this->getField()->getId());
72  $pass = true;
73 
74  if (($this->getField()->getId() == "owner" || $this->getField()->getId() == "last_edit_by") && $filter) {
75  $pass = false;
76  $user = new ilObjUser($value);
77  if (strpos($user->getFullname(), $filter) !== false) {
78  $pass = true;
79  }
80  }
81 
82  return $pass;
83  }
84 
85  public function parseSortingValue(string $value, bool $link = true): mixed
86  {
87  return $value;
88  }
89 
93  public function getInputField(ilPropertyFormGUI $form, ?int $record_id = null): ?ilFormPropertyGUI
94  {
95  return null;
96  }
97 
103  protected function setupInputField(ilFormPropertyGUI $input, ilDclBaseFieldModel $field): void
104  {
105  $input->setInfo($field->getDescription() . ($input->getInfo() ? '<br>' . $input->getInfo() : ''));
106  }
107 
111  protected function getFilterInputFieldValue(
112  ilTableFilterItem $input
113  ) {
114  $value = $input->getValue();
115  if (is_array($value)) {
116  if ($value['from'] || $value['to']) {
117  return $value;
118  }
119  } else {
120  if ($value != '') {
121  return $value;
122  }
123  }
124 
125  return null;
126  }
127 
131  public function addFieldCreationForm(
133  ilObjDataCollection $dcl,
134  string $mode = "create"
135  ): void {
136  $opt = $this->buildFieldCreationInput($dcl, $mode);
137  if ($opt !== null) {
138  $form->addOption($opt);
139  }
140  }
141 
145  protected function buildFieldCreationInput(ilObjDataCollection $dcl, string $mode = 'create'): ?ilRadioOption
146  {
147  $opt = null;
148  if ($this->getField()->getDatatypeId() !== null) {
149  $title = $this->field->getPresentationTitle();
150  $info = $this->field->getPresentationDescription();
151  $opt = new ilRadioOption($title, (string) $this->getField()->getDatatypeId());
152  $opt->setInfo($info);
153  }
154 
155  return $opt;
156  }
157 
161  public function getPropertyInputFieldId(string $property): string
162  {
163  return "prop_" . $property;
164  }
165 
169  public function getField(): ilDclBaseFieldModel
170  {
171  return $this->field;
172  }
173 }
This class represents an option in a radio group.
Readable part of repository interface to ilComponentDataDB.
passThroughFilter(ilDclBaseRecordModel $record, $filter)
Checks if a filter affects a record.
parseSortingValue(string $value, bool $link=true)
getRecordFieldValue(?string $field_id)
Get Field Value.
getInputField(ilPropertyFormGUI $form, ?int $record_id=null)
Returns field-input.
setupInputField(ilFormPropertyGUI $input, ilDclBaseFieldModel $field)
Sets basic settings on field-input.
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
static http()
Fetches the global http state from ILIAS.
getPropertyInputFieldId(string $property)
Return post-var for property-fields.
global $DIC
Definition: shib_login.php:22
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 that may include a sub form.