19 declare(strict_types=1);
38 protected \ILIAS\DI\UIServices
$ui;
49 $this->
ctrl = $DIC->ctrl();
50 $this->userId = $DIC->user()->getId();
51 $this->
lng = $DIC->language();
52 $this->
ui = $DIC->ui();
54 $this->tableview = ilDclTableView::find($tableview_id);
55 $identifier =
'dcl_rl_' . $table->
getId() .
'_' . $tableview_id;
58 $this->
setId($identifier);
64 $this->parent_obj = $a_parent_obj;
65 $this->
setRowTemplate(
"tpl.record_list_row.html",
"components/ILIAS/DataCollection");
76 if ($this->page_active) {
80 $this->numeric_fields = [];
81 foreach ($this->tableview->getVisibleFields() as $field) {
82 $title = $field->getTitle();
83 $sort_field = ($field->getRecordQuerySortObject() !=
null) ? $field->getSortField() :
'';
85 if ($field->hasNumericSorting()) {
86 $this->numeric_fields[] =
$title;
91 $this->
addColumn($this->
lng->txt(
"dcl_status"),
"_status_" . $field->getTitle());
102 $default_sort_title =
'id';
103 if ($fieldId = $this->table->getDefaultSortField()) {
107 if ($stdField->getId() == $fieldId) {
108 $default_sort_title = $stdField->getTitle();
119 $this->parent_obj->getRefId(),
120 $this->table->getId()
125 $this->
ctrl->saveParameter($a_parent_obj,
'tableview_id');
127 $this->
setStyle(
'table', $this->
getStyle(
'table') .
' ' .
'dcl_record_list');
140 $this->object_data =
$data;
154 return in_array($a_field, $this->numeric_fields);
163 foreach ($this->object_data as $record) {
165 $record_data[
"_front"] =
null;
166 $record_data[
'_record'] = $record;
168 foreach ($this->tableview->getVisibleFields() as $field) {
169 $title = $field->getTitle();
170 $record_data[
$title] = $record->getRecordFieldHTML($field->getId(), [
'tableview_id' => $this->tableview->getId()]);
177 if ($field->getId() ==
'comments') {
178 $record_data[
'n_comments'] = $record->getNrOfComments();
182 $this->
ctrl->setParameterByClass(ilDclFieldEditGUI::class,
"record_id", $record->getId());
183 $this->
ctrl->setParameterByClass(ilDclDetailedViewGUI::class,
"table_id", $record->getTableId());
184 $this->
ctrl->setParameterByClass(ilDclDetailedViewGUI::class,
"record_id", $record->getId());
185 $this->
ctrl->setParameterByClass(ilDclDetailedViewGUI::class,
"tableview_id", $this->tableview->getId());
186 $this->
ctrl->setParameterByClass(ilDclRecordEditGUI::class,
"record_id", $record->getId());
187 $this->
ctrl->setParameterByClass(ilDclRecordEditGUI::class,
"tableview_id", $this->tableview->getId());
188 $this->
ctrl->setParameterByClass(ilDclRecordEditGUI::class,
"mode", $this->mode);
192 if ($this->page_active) {
193 $record_data[
"_front"] = $this->
ctrl->getLinkTargetByClass(ilDclDetailedViewGUI::class,
'renderRecord');
194 $action_links[] = $this->
ui->factory()->link()->standard(
195 $this->
lng->txt(
'view'),
196 $this->
ctrl->getLinkTargetByClass(ilDclDetailedViewGUI::class,
'renderRecord')
200 if ($record->hasPermissionToEdit($this->parent_obj->getRefId())) {
201 $action_links[] = $this->
ui->factory()->link()->standard(
202 $this->
lng->txt(
'edit'),
203 $this->
ctrl->getLinkTargetByClass(ilDclRecordEditGUI::class,
'edit')
207 if ($record->hasPermissionToDelete($this->parent_obj->getRefId())) {
208 $action_links[] = $this->
ui->factory()->link()->standard(
209 $this->
lng->txt(
'delete'),
210 $this->
ctrl->getLinkTargetByClass(ilDclRecordEditGUI::class,
'confirmDelete')
214 if ($this->table->getPublicCommentsEnabled()) {
216 $action_links[] = $this->
ui->factory()->button()->shy(
217 $this->
lng->txt(
'dcl_comments'),
220 return "document.getElementById('$id').addEventListener('click',function() 226 $action_dropdown = $this->
ui->factory()->dropdown()->standard($action_links)
227 ->withLabel($this->
lng->txt(
"actions"));
228 $record_data[
"_actions"] = $this->
ui->renderer()->render($action_dropdown);
230 $data[] = $record_data;
235 protected function fillRow(array $a_set):
void 237 $record_obj = $a_set[
'_record'];
243 foreach ($this->tableview->getVisibleFields() as $field) {
244 $title = $field->getTitle();
245 $this->tpl->setCurrentBlock(
"field");
246 $content = $a_set[
$title];
247 if ($content ===
false || $content ===
null) {
251 $this->tpl->setVariable(
"CONTENT", $content);
252 $this->tpl->parseCurrentBlock();
255 $this->tpl->setCurrentBlock(
"field");
256 $this->tpl->setVariable(
"CONTENT", $a_set[
"_status_" .
$title]);
257 $this->tpl->parseCurrentBlock();
261 if ($a_set[
"_front"]) {
262 $this->tpl->setCurrentBlock(
'view');
263 $this->tpl->setVariable(
265 $this->
ui->renderer()->render($this->
ui->factory()->symbol()->glyph()->enlarge($a_set[
"_front"]))
267 $this->tpl->parseCurrentBlock();
270 if (strlen($a_set[
"_actions"]) > 0) {
271 $this->tpl->setCurrentBlock(
'actions');
272 $this->tpl->setVariable(
"ACTIONS", $a_set[
"_actions"]);
273 $this->tpl->parseCurrentBlock();
277 if ($record_obj->hasPermissionToDelete($this->parent_obj->getRefId())) {
278 $this->tpl->setCurrentBlock(
'mode_manage');
279 $this->tpl->setVariable(
'RECORD_ID', $record_obj->getId());
280 $this->tpl->parseCurrentBlock();
282 $this->tpl->touchBlock(
'mode_manage_no_owner');
293 foreach ($this->object_data as $record) {
294 if ($record->hasPermissionToEdit($this->parent_obj->getRefId()) ||
295 $record->hasPermissionToDelete($this->parent_obj->getRefId())) {
310 if ($status = $record_field->getStatus()) {
312 $return = $icons->renderIconForStatus($status->status);
325 foreach ($this->tableview->getFilterableFieldSettings() as $field_set) {
326 $field = $field_set->getFieldObject();
330 $filter = end($this->filters);
331 $value = $field_set->getFilterValue();
332 $filter->setValueByArray($value);
333 $filter->writeToSession();
334 $this->
applyFilter($field->getId(), empty(array_filter($value)) ?
null : $filter->getValue());
337 if (!$field_set->isFilterChangeable()) {
338 $filter->setDisabled(
true);
340 $filter->__call(
'setDisabled', [
true]);
351 foreach ($this->tableview->getFilterableFieldSettings() as $field_set) {
352 $field = $field_set->getFieldObject();
356 $filter = end($this->filters);
357 if (!$field_set->isFilterChangeable()) {
359 $value = $field_set->getFilterValue();
360 $filter->setValueByArray($value);
361 $value = $filter->getValue();
363 $filter->setDisabled(
true);
365 $filter->__call(
'setDisabled', [
true]);
376 $this->
filter[
"filter_" . $field_id] = $filter_value;
386 if ($this->
getId() && $this->userId > 0) {
388 return $tab_prop->getProperty($this->
getId(), $this->userId, $type);
400 $this->parent_obj->getRefId(),
402 $this->parent_obj->getObjId(),
419 $this->parent_obj->getRefId(),
420 $this->table->getId(),
ilDclTableView $tableview
initFilterFromTableView()
init filters with values from tableview
initFilter()
normally initialize filters - used by applyFilter and resetFilter
getStatus(ilDclBaseRecordModel $record, ilDclBaseFieldModel $field)
This adds the column for status.
setTopCommands(bool $a_val)
setExportFormats(array $formats)
Set available export formats.
getStyle(string $a_element)
setFormAction(string $a_form_action, bool $a_multipart=false)
setEnableTitle(bool $a_enabletitle)
buildData()
Parse data from record objects to an array that is then set to this table with ::setData() ...
static _getStandardFields(int $table_id)
setSelectAllCheckbox(string $a_select_all_checkbox, bool $a_select_all_on_top=false)
applyFilter($field_id, $filter_value)
static getFieldCache(int $field_id=0)
ilDclDetailedViewDefinitionGUI: ilPageEditorGUI, ilEditClipboardGUI, ilMediaPoolTargetSelector ilDcl...
setDescription(string $a_val)
withAdditionalOnLoadCode(Closure $binder)
static getInstance(int $variant=ilLPStatusIcons::ICON_VARIANT_DEFAULT, ?\ILIAS\UI\Renderer $renderer=null, ?\ILIAS\UI\Factory $factory=null)
numericOrdering(string $a_field)
setRecordData(array $data)
setFormName(string $a_name="")
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static getFieldRepresentation(ilDclBaseFieldModel $field)
static buildAjaxHash(int $node_type, ?int $node_id, string $obj_type, int $obj_id, ?string $sub_type=null, ?int $sub_id=null, int $news_id=0)
Build ajax hash.
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
setStyle(string $a_element, string $a_style)
getFilter()
Return array of fields that are currently stored in the filter.
static hasAccessToFields(int $ref_id, int $table_id)
setShowRowsSelector(bool $a_value)
Toggle rows-per-page selector.
fillRow(array $a_set)
Standard Version of Fill Row.
setDefaultOrderField(string $a_defaultorderfield)
setRowTemplate(string $a_template, string $a_template_dir="")
Set row template.
const PROP_LEARNING_PROGRESS
setDefaultOrderDirection(string $a_defaultorderdirection)
static _isStandardField($field_id)
export(string $format=self::EXPORT_EXCEL, ?string $filepath=null, bool $send=false)
Creates an export of a specific data collection table.
setTitle(string $a_title, string $a_icon="", string $a_icon_alt="")
static getListCommentsJSCall(string $a_hash, ?string $a_update_code=null)
Get list comments js call.
__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)
Hook-Class for exporting data-collections (used in SOAP-Class) This Class avoids duplicated code by r...
__construct(?object $a_parent_obj, string $a_parent_cmd="", string $a_template_context="")
loadProperty(string $type)
static getRecordFieldCache(object $record, object $field)
filter(string $filter_id, $class_path, string $cmd, bool $activated=true, bool $expanded=true)
exportData(int $format, bool $send=false)
Exports the table.
getCommentJsLinkCode(int $recordId)
Get the ajax link for displaying the comments in the right panel (to be wrapped in an onclick attr) ...
addMultiCommand(string $a_cmd, string $a_text)
setEnableHeader(bool $a_enableheader)
setPrefix(string $a_prefix)