ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilDclFieldListTableGUI.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 {
23  private ?int $order = null;
24 
25  protected ilDclTable $table;
26 
27  protected \ILIAS\UI\Renderer $renderer;
28  protected \ILIAS\UI\Factory $ui_factory;
29 
30 
31  public function __construct(ilDclFieldListGUI $a_parent_obj, string $a_parent_cmd, int $table_id)
32  {
33  global $DIC;
34 
35  $this->ui_factory = $DIC->ui()->factory();
36  $this->renderer = $DIC->ui()->renderer();
37 
38  parent::__construct($a_parent_obj, $a_parent_cmd);
39 
40  $this->parent_obj = $a_parent_obj;
41  $this->table = ilDclCache::getTableCache($table_id);
42  $this->table->showInvalidFields(true);
43 
44  $this->setId('dcl_field_list');
45  $this->addColumn('', '', '1', true);
46  $this->addColumn($this->lng->txt('dcl_order'), '', '30px');
47  $this->addColumn($this->lng->txt('dcl_fieldtitle'), '', 'auto');
48  $this->addColumn($this->lng->txt('dcl_in_export'), '', '30px');
49  $this->addColumn($this->lng->txt('dcl_description'), '', 'auto');
50  $this->addColumn($this->lng->txt('dcl_field_datatype'), '', 'auto');
51  $this->addColumn($this->lng->txt('dcl_unique'), '', 'auto');
52  $this->addColumn($this->lng->txt('actions'), '', '');
53  // Only add mutli command for custom fields
54  if (count($this->table->getRecordFields())) {
55  $this->setSelectAllCheckbox('dcl_field_ids[]');
56  $this->addMultiCommand('confirmDeleteFields', $this->lng->txt('dcl_delete_fields'));
57  }
58 
59  $this->ctrl->setParameterByClass('ildclfieldeditgui', 'table_id', $this->parent_obj->getTableId());
60  $this->ctrl->setParameterByClass('ildclfieldlistgui', 'table_id', $this->parent_obj->getTableId());
61 
62  $this->setFormAction($this->ctrl->getFormActionByClass('ildclfieldlistgui'));
63  $this->addCommandButton('save', $this->lng->txt('dcl_save'));
64 
65  $this->setFormAction($this->ctrl->getFormAction($a_parent_obj));
66  $this->setFormName('field_list');
67 
68  //those two are important as we get our data as objects not as arrays.
69  $this->setExternalSegmentation(true);
70  $this->setExternalSorting(true);
71 
72  $this->setTopCommands(true);
73  $this->setEnableHeader(true);
74  $this->setShowRowsSelector(false);
75  $this->setEnableHeader(true);
76  $this->setEnableTitle(true);
77  $this->setDefaultOrderDirection('asc');
78 
79  $this->setTitle($this->table->getTitle());
80  $this->setRowTemplate('tpl.field_list_row.html', 'components/ILIAS/DataCollection');
81  $this->setStyle('table', $this->getStyle('table') . ' ' . 'dcl_record_list');
82 
83  $this->setData($this->table->getFields());
84  }
85 
89  public function getHTML(): string
90  {
91  if ($this->getExportMode()) {
92  $this->exportData($this->getExportMode(), true);
93  }
94 
95  $this->prepareOutput();
96 
97  if (is_object($this->getParentObject()) && $this->getId() == "") {
98  $this->ctrl->saveParameter($this->getParentObject(), $this->getNavParameter());
99  }
100 
101  if (!$this->getPrintMode()) {
102  // set form action
103  if ($this->form_action != "" && $this->getOpenFormTag()) {
104  $hash = "";
105 
106  if ($this->form_multipart) {
107  $this->tpl->touchBlock("form_multipart_bl");
108  }
109 
110  if ($this->getPreventDoubleSubmission()) {
111  $this->tpl->touchBlock("pdfs");
112  }
113 
114  $this->tpl->setCurrentBlock("tbl_form_header");
115  $this->tpl->setVariable("FORMACTION", $this->getFormAction() . $hash);
116  $this->tpl->setVariable("FORMNAME", $this->getFormName());
117  $this->tpl->parseCurrentBlock();
118  }
119 
120  if ($this->form_action != "" && $this->getCloseFormTag()) {
121  $this->tpl->touchBlock("tbl_form_footer");
122  }
123  }
124 
125  if (!$this->enabled['content']) {
126  return $this->render();
127  }
128 
129  if (!$this->getExternalSegmentation()) {
130  $this->setMaxCount(count($this->row_data));
131  }
132 
133  $this->determineOffsetAndOrder();
134 
135  $this->setFooter("tblfooter", $this->lng->txt("previous"), $this->lng->txt("next"));
136 
137  $data = $this->getData();
138  if ($this->dataExists()) {
139  // sort
140  if (!$this->getExternalSorting() && $this->enabled["sort"]) {
141  $data = ilArrayUtil::sortArray(
142  $data,
143  $this->getOrderField(),
144  $this->getOrderDirection(),
145  $this->numericOrdering($this->getOrderField())
146  );
147  }
148 
149  // slice
150  if (!$this->getExternalSegmentation()) {
151  $data = array_slice($data, $this->getOffset(), $this->getLimit());
152  }
153  }
154 
155  // fill rows
156  if ($this->dataExists()) {
157  if ($this->getPrintMode()) {
159  }
160 
161  $this->tpl->addBlockFile(
162  "TBL_CONTENT",
163  "tbl_content",
164  $this->row_template,
165  $this->row_template_dir
166  );
167 
168  foreach ($data as $set) {
169  $this->tpl->setCurrentBlock("tbl_content");
170  $this->css_row = ($this->css_row !== "tblrow1")
171  ? "tblrow1"
172  : "tblrow2";
173  $this->tpl->setVariable("CSS_ROW", $this->css_row);
174 
175  $this->fillRowFromObject($set);
176  $this->tpl->setCurrentBlock("tbl_content");
177  $this->tpl->parseCurrentBlock();
178  }
179  } else {
180  // add standard no items text (please tell me, if it messes something up, alex, 29.8.2008)
181  $no_items_text = (trim($this->getNoEntriesText()) != '')
182  ? $this->getNoEntriesText()
183  : $this->lng->txt("no_items");
184 
185  $this->css_row = ($this->css_row !== "tblrow1")
186  ? "tblrow1"
187  : "tblrow2";
188 
189  $this->tpl->setCurrentBlock("tbl_no_entries");
190  $this->tpl->setVariable('TBL_NO_ENTRY_CSS_ROW', $this->css_row);
191  $this->tpl->setVariable('TBL_NO_ENTRY_COLUMN_COUNT', $this->column_count);
192  $this->tpl->setVariable('TBL_NO_ENTRY_TEXT', trim($no_items_text));
193  $this->tpl->parseCurrentBlock();
194  }
195 
196  if (!$this->getPrintMode()) {
197  $this->fillFooter();
198 
199  $this->fillHiddenRow();
200 
201  $this->fillActionRow();
202 
203  $this->storeNavParameter();
204  }
205 
206  return $this->render();
207  }
208 
209  public function fillRowFromObject(ilDclBaseFieldModel $a_set): void
210  {
211  if (!$a_set->isStandardField()) {
212  $this->tpl->setVariable('FIELD_ID', $a_set->getId());
213  }
214 
215  $this->tpl->setVariable('NAME', 'order[' . $a_set->getId() . ']');
216  $this->tpl->setVariable('VALUE', $this->order);
217 
218  /* Don't enable setting filter for MOB fields or reference fields that reference a MOB field */
219  $show_exportable = true;
220 
221  if ($a_set->getId() == 'comments') {
222  $show_exportable = false;
223  }
224 
225  if ($show_exportable) {
226  $this->tpl->setVariable('CHECKBOX_EXPORTABLE', 'exportable[' . $a_set->getId() . ']');
227  if ($a_set->getExportable()) {
228  $this->tpl->setVariable('CHECKBOX_EXPORTABLE_CHECKED', 'checked');
229  }
230  } else {
231  $this->tpl->setVariable('NO_FILTER_EXPORTABLE');
232  }
233 
234  $this->order = $this->order + 10;
235  $this->tpl->setVariable('ORDER_NAME', 'order[' . $a_set->getId() . ']');
236  $this->tpl->setVariable('ORDER_VALUE', $this->order);
237 
238  $this->tpl->setVariable('TITLE', $a_set->getTitle());
239  $this->tpl->setVariable('DESCRIPTION', $a_set->getDescription());
240  $this->tpl->setVariable('DATATYPE', $a_set->getPresentationTitle());
241 
242  if (!$a_set->isStandardField()) {
243  if ($a_set->isUnique()) {
244  $icon = $this->ui_factory->symbol()->icon()->custom(ilUtil::getImagePath('standard/icon_checked.svg'), $this->lng->txt("yes"));
245  } else {
246  $icon = $this->ui_factory->symbol()->icon()->custom(ilUtil::getImagePath('standard/icon_unchecked.svg'), $this->lng->txt("no"));
247  }
248  $this->tpl->setVariable('ICON_UNIQUE', $this->renderer->render($icon));
249  } else {
250  $this->tpl->setVariable('NO_UNIQUE');
251  }
252 
253  $this->ctrl->setParameterByClass('ildclfieldeditgui', 'field_id', $a_set->getId());
254 
255  if (!$a_set->isStandardField()) {
257  $this->parent_obj->getDataCollectionObject()->getRefId(),
258  $this->table->getId()
259  )) {
260  $dropdown_items = [];
261  if (in_array($a_set->getDatatypeId(), array_keys(ilDclDatatype::getAllDatatype()))) {
262  $dropdown_items[] = $this->ui_factory->link()->standard(
263  $this->lng->txt('edit'),
264  $this->ctrl->getLinkTargetByClass(ilDclFieldEditGUI::class, 'edit')
265  );
266  }
267  $dropdown_items[] = $this->ui_factory->link()->standard(
268  $this->lng->txt('delete'),
269  $this->ctrl->getLinkTargetByClass(ilDclFieldEditGUI::class, 'confirmDelete')
270  );
271  $dropdown = $this->ui_factory->dropdown()->standard($dropdown_items)->withLabel($this->lng->txt('actions'));
272 
273  $this->tpl->setVariable('ACTIONS', $this->renderer->render($dropdown));
274  } else {
275  $this->tpl->setVariable('ACTIONS');
276  }
277  }
278  }
279 }
setData(array $a_data)
numericOrdering(string $a_field)
Should this field be sorted numeric?
static array static setUseRelativeDates(bool $a_status)
set use relative dates
prepareOutput()
Anything that must be done before HTML is generated.
setTopCommands(bool $a_val)
getStyle(string $a_element)
setFormAction(string $a_form_action, bool $a_multipart=false)
setEnableTitle(bool $a_enabletitle)
addCommandButton(string $a_cmd, string $a_text, string $a_onclick='', string $a_id="", string $a_class="")
setSelectAllCheckbox(string $a_select_all_checkbox, bool $a_select_all_on_top=false)
renderer()
setFormName(string $a_name="")
setId(string $a_val)
exportData(int $format, bool $send=false)
Export and optionally send current table data.
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
fillRowFromObject(ilDclBaseFieldModel $a_set)
setStyle(string $a_element, string $a_style)
static hasAccessToFields(int $ref_id, int $table_id)
setExternalSorting(bool $a_val)
setShowRowsSelector(bool $a_value)
Toggle rows-per-page selector.
static getAllDatatype(bool $force=false)
Get all possible Datatypes.
setRowTemplate(string $a_template, string $a_template_dir="")
Set row template.
global $DIC
Definition: shib_login.php:22
static getImagePath(string $image_name, string $module_path="", string $mode="output", bool $offline=false)
get image path (for images located in a template directory)
setDefaultOrderDirection(string $a_defaultorderdirection)
static getTableCache(?int $table_id=null)
getDescription()
Get description.
setTitle(string $a_title, string $a_icon="", string $a_icon_alt="")
setFooter(string $a_style, string $a_previous="", string $a_next="")
__construct(Container $dic, ilPlugin $plugin)
addColumn(string $a_text, string $a_sort_field="", string $a_width="", bool $a_is_checkbox_action_column=false, string $a_class="", string $a_tooltip="", bool $a_tooltip_with_html=false)
addMultiCommand(string $a_cmd, string $a_text)
__construct(ilDclFieldListGUI $a_parent_obj, string $a_parent_cmd, int $table_id)
determineOffsetAndOrder(bool $a_omit_offset=false)
setEnableHeader(bool $a_enableheader)
setMaxCount(int $a_max_count)
set max.
getDatatypeId()
Get datatype_id.
setExternalSegmentation(bool $a_val)
static sortArray(array $array, string $a_array_sortby_key, string $a_array_sortorder="asc", bool $a_numeric=false, bool $a_keep_keys=false)