48 private readonly
Group $group,
54 $this->ui_factory = $DIC->ui()->factory();
55 $this->request = $DIC->http()->request();
60 $ok = $this->ok($this->ui_factory);
61 $nok = $this->nok($this->ui_factory);
63 foreach ($this->
repository->allForParent($this->group->getId()) as $entry) {
64 $title = $this->translations_repository->get($entry)->getDefault()?->getTranslation() ?? $entry->getTitle();
66 $this->
hash($entry->getId()),
68 self::COLUMN_TITLE => $title,
69 self::COLUMN_ACTIVE => $entry->isActive() ? $ok : $nok,
73 if ($entry->isCore()) {
74 $row = $row->withDisabledAction(
'delete')
75 ->withDisabledAction(
'edit')
76 ->withDisabledAction(
'translate')
77 ->withDisabledAction(
'move');
90 return $this->ui_factory
95 $this->group->getTitle(),
97 self::COLUMN_TITLE => $this->ui_factory->table()->column()->text(
98 $this->translator->translate(
'title',
'entry')
100 self::COLUMN_ACTIVE => $this->ui_factory->table()->column()->statusIcon(
101 $this->translator->translate(
'active',
'entry')
105 ->withRequest($this->request)
108 'edit' => $this->ui_factory->table()->action()->single(
109 $this->translator->translate(
'edit',
'entry'),
110 $uri_builder->withURI($here_uri->
withParameter(
'cmd',
'edit')),
114 'toggle_activation' => $this->ui_factory->table()->action()->standard(
115 $this->translator->translate(
'toggle_activation',
'entry'),
116 $uri_builder->withURI($here_uri->
withParameter(
'cmd',
'toggleActivation')),
120 'delete' => $this->ui_factory->table()->action()->standard(
121 $this->translator->translate(
'delete',
'entry'),
122 $uri_builder->withURI($here_uri->
withParameter(
'cmd',
'confirmDelete')),
126 'move' => $this->ui_factory->table()->action()->standard(
127 $this->translator->translate(
'move',
'entry'),
128 $uri_builder->withURI($here_uri->
withParameter(
'cmd',
'selectMove')),
132 'translate' => $this->ui_factory->table()->action()->single(
133 $this->translator->translate(
'translate',
'group'),
134 $uri_builder->withURI(
135 $translations_uri->withParameter(
'async',
'true')->withParameter(
153 $query_params_namespace = [
'gsfo'];
155 $query_params_namespace,
repository()
description: > Example for rendering a repository card
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
This describes a Table to specify the order of its data (rows).
This is how the factory for UI elements looks.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
buildOrderingRow(string $id, array $record)
withParameter(string $key, $value)
Get URI with modified parameters.