19 declare(strict_types=1);
35 $this->ui_factory = $DIC->ui()->factory();
36 $this->
renderer = $DIC->ui()->renderer();
40 $this->parent_obj = $a_parent_obj;
42 $this->table->showInvalidFields(
true);
44 $this->
setId(
'dcl_field_list');
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');
54 if (count($this->table->getRecordFields())) {
59 $this->
ctrl->setParameterByClass(
'ildclfieldeditgui',
'table_id', $this->parent_obj->getTableId());
60 $this->
ctrl->setParameterByClass(
'ildclfieldlistgui',
'table_id', $this->parent_obj->getTableId());
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');
83 $this->
setData($this->table->getFields());
106 if ($this->form_multipart) {
107 $this->tpl->touchBlock(
"form_multipart_bl");
111 $this->tpl->touchBlock(
"pdfs");
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();
121 $this->tpl->touchBlock(
"tbl_form_footer");
125 if (!$this->enabled[
'content']) {
135 $this->
setFooter(
"tblfooter", $this->
lng->txt(
"previous"), $this->
lng->txt(
"next"));
161 $this->tpl->addBlockFile(
165 $this->row_template_dir
168 foreach ($data as $set) {
169 $this->tpl->setCurrentBlock(
"tbl_content");
170 $this->css_row = ($this->css_row !==
"tblrow1")
173 $this->tpl->setVariable(
"CSS_ROW", $this->css_row);
176 $this->tpl->setCurrentBlock(
"tbl_content");
177 $this->tpl->parseCurrentBlock();
183 : $this->
lng->txt(
"no_items");
185 $this->css_row = ($this->css_row !==
"tblrow1")
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();
212 $this->tpl->setVariable(
'FIELD_ID', $a_set->
getId());
215 $this->tpl->setVariable(
'NAME',
'order[' . $a_set->
getId() .
']');
216 $this->tpl->setVariable(
'VALUE', $this->order);
219 $show_exportable =
true;
221 if ($a_set->
getId() ==
'comments') {
222 $show_exportable =
false;
225 if ($show_exportable) {
226 $this->tpl->setVariable(
'CHECKBOX_EXPORTABLE',
'exportable[' . $a_set->
getId() .
']');
228 $this->tpl->setVariable(
'CHECKBOX_EXPORTABLE_CHECKED',
'checked');
231 $this->tpl->setVariable(
'NO_FILTER_EXPORTABLE');
234 $this->order = $this->order + 10;
235 $this->tpl->setVariable(
'ORDER_NAME',
'order[' . $a_set->
getId() .
']');
236 $this->tpl->setVariable(
'ORDER_VALUE', $this->order);
238 $this->tpl->setVariable(
'TITLE', $a_set->
getTitle());
248 $this->tpl->setVariable(
'ICON_UNIQUE', $this->
renderer->render(
$icon));
250 $this->tpl->setVariable(
'NO_UNIQUE');
253 $this->
ctrl->setParameterByClass(
'ildclfieldeditgui',
'field_id', $a_set->
getId());
257 $this->parent_obj->getDataCollectionObject()->getRefId(),
258 $this->table->getId()
260 $dropdown_items = [];
262 $dropdown_items[] = $this->ui_factory->link()->standard(
263 $this->
lng->txt(
'edit'),
264 $this->
ctrl->getLinkTargetByClass(ilDclFieldEditGUI::class,
'edit')
267 $dropdown_items[] = $this->ui_factory->link()->standard(
268 $this->
lng->txt(
'delete'),
269 $this->
ctrl->getLinkTargetByClass(ilDclFieldEditGUI::class,
'confirmDelete')
271 $dropdown = $this->ui_factory->dropdown()->standard($dropdown_items)->withLabel($this->
lng->txt(
'actions'));
273 $this->tpl->setVariable(
'ACTIONS', $this->
renderer->render($dropdown));
275 $this->tpl->setVariable(
'ACTIONS');
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)
setFormName(string $a_name="")
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.
getExternalSegmentation()
ILIAS UI Renderer $renderer
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)
getPreventDoubleSubmission()
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)
ILIAS UI Factory $ui_factory
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)