19 declare(strict_types=1);
27 $ilCtrl = $DIC[
'ilCtrl'];
30 $this->
setId(
'dcl_tableviews');
38 $ilCtrl->saveParameter($this,
'tableview_id');
39 $this->
setFormAction($ilCtrl->getFormActionByClass(ilDclTableViewEditGUI::class));
45 $this->
setRowTemplate(
'tpl.tableview_fields_row.html',
'components/ILIAS/DataCollection');
53 $this->
parseData($a_parent_obj->tableview->getFieldSettings());
59 if (!$this->parent_obj->table->getPublicCommentsEnabled()) {
60 foreach ($data as $key => $rec) {
61 if ($rec->getField() ==
'comments') {
92 if ($this->form_multipart) {
93 $this->tpl->touchBlock(
"form_multipart_bl");
97 $this->tpl->touchBlock(
"pdfs");
100 $this->tpl->setCurrentBlock(
"tbl_form_header");
101 $this->tpl->setVariable(
"FORMACTION", $this->
getFormAction() . $hash);
102 $this->tpl->setVariable(
"FORMNAME", $this->
getFormName());
103 $this->tpl->parseCurrentBlock();
107 $this->tpl->touchBlock(
"tbl_form_footer");
111 if (!$this->enabled[
'content']) {
121 $this->
setFooter(
"tblfooter", $this->
lng->txt(
"previous"), $this->
lng->txt(
"next"));
147 $this->tpl->addBlockFile(
151 $this->row_template_dir
154 foreach ($data as $set) {
155 $this->tpl->setCurrentBlock(
"tbl_content");
156 $this->css_row = ($this->css_row !==
"tblrow1")
159 $this->tpl->setVariable(
"CSS_ROW", $this->css_row);
162 $this->tpl->setCurrentBlock(
"tbl_content");
163 $this->tpl->parseCurrentBlock();
171 $this->css_row = ($this->css_row !==
"tblrow1")
175 $this->tpl->setCurrentBlock(
"tbl_no_entries");
176 $this->tpl->setVariable(
'TBL_NO_ENTRY_CSS_ROW', $this->css_row);
177 $this->tpl->setVariable(
'TBL_NO_ENTRY_COLUMN_COUNT', $this->column_count);
178 $this->tpl->setVariable(
'TBL_NO_ENTRY_TEXT', trim($no_items_text));
179 $this->tpl->parseCurrentBlock();
200 $field = $a_set->getFieldObject();
201 if ($field->getId() ==
'comments' && !$this->parent_obj->table->getPublicCommentsEnabled()) {
205 $this->tpl->setVariable(
'FIELD_TITLE', $field->getTitle());
206 $this->tpl->setVariable(
'ID', $a_set->getId());
207 $this->tpl->setVariable(
'FIELD_ID', $a_set->getField());
208 $this->tpl->setVariable(
'VISIBLE', $a_set->isVisibleInList() ?
'checked' :
'');
209 if ($field->allowFilterInListView()) {
210 $this->tpl->setVariable(
'IN_FILTER', $a_set->isInFilter() ?
'checked' :
'');
211 $this->tpl->setVariable(
'FILTER_VALUE', $this->
getStandardFilterHTML($field, $a_set->getFilterValue()));
212 $this->tpl->setVariable(
'FILTER_CHANGEABLE', $a_set->isFilterChangeable() ?
'checked' :
'');
214 $this->tpl->setVariable(
'NO_FILTER');
224 $field_representation->addFilterInputFieldToTable($this);
225 $filter = end($this->filters);
227 $filter->setValueByArray($value);
229 return $filter->render();
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)
ilDclTableViewEditGUI: ilDclDetailedViewDefinitionGUI ilDclTableViewEditGUI: ilDclCreateViewDefiniti...
txt(string $a_topic, string $a_default_lang_fallback_mod="")
gets the text for a given topic if the topic is not in the list, the topic itself with "-" will be re...
setFormAction(string $a_form_action, bool $a_multipart=false)
setEnableTitle(bool $a_enabletitle)
static getFieldRepresentationInstance(ilDclBaseFieldModel $field)
addCommandButton(string $a_cmd, string $a_text, string $a_onclick='', string $a_id="", string $a_class="")
exportData(int $format, bool $send=false)
Export and optionally send current table data.
setExternalSorting(bool $a_val)
setShowRowsSelector(bool $a_value)
Toggle rows-per-page selector.
setRowTemplate(string $a_template, string $a_template_dir="")
Set row template.
getExternalSegmentation()
setDefaultOrderDirection(string $a_defaultorderdirection)
getStandardFilterHTML(ilDclBaseFieldModel $field, array $value)
__construct(ilDclTableViewEditGUI $a_parent_obj)
getPreventDoubleSubmission()
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)
determineOffsetAndOrder(bool $a_omit_offset=false)
setEnableHeader(bool $a_enableheader)
setMaxCount(int $a_max_count)
set max.
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)
fillRowFromObject(object $a_set)