ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
EntriesTable.php
Go to the documentation of this file.
1 <?php
2 
20 
24 use ILIAS\Data\URI;
34 
36 {
37  use Hasher;
38  use UIHelper ;
39 
40  public const COLUMN_ACTIVE = 'active';
41  public const COLUMN_TITLE = 'title';
42  public const CLUMNS_ITEMS = 'items';
46 
47  public function __construct(
48  private readonly Group $group,
49  private readonly EntriesRepository $repository,
50  private readonly TranslationsRepository $translations_repository,
51  private readonly Translator $translator
52  ) {
53  global $DIC;
54  $this->ui_factory = $DIC->ui()->factory();
55  $this->request = $DIC->http()->request();
56  }
57 
58  public function getRows(OrderingRowBuilder $row_builder, array $visible_column_ids): \Generator
59  {
60  $ok = $this->ok($this->ui_factory);
61  $nok = $this->nok($this->ui_factory);
62 
63  foreach ($this->repository->allForParent($this->group->getId()) as $entry) {
64  $title = $this->translations_repository->get($entry)->getDefault()?->getTranslation() ?? $entry->getTitle();
65  $row = $row_builder->buildOrderingRow(
66  $this->hash($entry->getId()),
67  [
68  self::COLUMN_TITLE => $title,
69  self::COLUMN_ACTIVE => $entry->isActive() ? $ok : $nok,
70  ]
71  );
72 
73  if ($entry->isCore()) {
74  $row = $row->withDisabledAction('delete')
75  ->withDisabledAction('edit')
76  ->withDisabledAction('translate')
77  ->withDisabledAction('move');
78  }
79 
80  yield $row;
81  }
82  }
83 
84  public function get(
85  URI $here_uri,
86  URI $translations_uri
87  ): Ordering {
88  $uri_builder = $this->initURIBuilder($here_uri);
89 
90  return $this->ui_factory
91  ->table()
92  ->ordering(
93  $this,
94  $here_uri,
95  $this->group->getTitle(),
96  [
97  self::COLUMN_TITLE => $this->ui_factory->table()->column()->text(
98  $this->translator->translate('title', 'entry')
99  ),
100  self::COLUMN_ACTIVE => $this->ui_factory->table()->column()->statusIcon(
101  $this->translator->translate('active', 'entry')
102  )
103  ],
104  )
105  ->withRequest($this->request)
106  ->withActions(
107  [
108  'edit' => $this->ui_factory->table()->action()->single(
109  $this->translator->translate('edit', 'entry'),
110  $uri_builder->withURI($here_uri->withParameter('cmd', 'edit')),
111  $this->id_token
112  )->withAsync(true),
113 
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')),
117  $this->id_token
118  )->withAsync(false),
119 
120  'delete' => $this->ui_factory->table()->action()->standard(
121  $this->translator->translate('delete', 'entry'),
122  $uri_builder->withURI($here_uri->withParameter('cmd', 'confirmDelete')),
123  $this->id_token
124  )->withAsync(true),
125 
126  'move' => $this->ui_factory->table()->action()->standard(
127  $this->translator->translate('move', 'entry'),
128  $uri_builder->withURI($here_uri->withParameter('cmd', 'selectMove')),
129  $this->id_token
130  )->withAsync(true),
131 
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(
136  'cmd',
138  )
139  ),
140  $this->id_token
141  )->withAsync(true),
142  ]
143  );
144  }
145 
146  protected function initURIBuilder(URI $target): URLBuilder
147  {
148  $url_builder = new URLBuilder(
149  $target
150  );
151 
152  // these are the query parameters this instance is controlling
153  $query_params_namespace = ['gsfo'];
154  [$url_builder, $this->id_token] = $url_builder->acquireParameters(
155  $query_params_namespace,
156  'entry_id'
157  );
158  return $url_builder;
159  }
160 
161  public function getToken(URI $target): ?URLBuilderToken
162  {
163  $this->initURIBuilder($target);
164 
165  return $this->id_token;
166  }
167 
168 }
getRows(OrderingRowBuilder $row_builder, array $visible_column_ids)
This is called by the (ordering-)table to retrieve rows; map data-records to rows using the $row_buil...
__construct(private readonly Group $group, private readonly EntriesRepository $repository, private readonly TranslationsRepository $translations_repository, private readonly Translator $translator)
repository()
description: > Example for rendering a repository card
Definition: repository.php:33
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
This describes a Table to specify the order of its data (rows).
Definition: Ordering.php:28
This is how the factory for UI elements looks.
Definition: Factory.php:37
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
global $DIC
Definition: shib_login.php:22
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
buildOrderingRow(string $id, array $record)
URLBuilder.
Definition: URLBuilder.php:40
withParameter(string $key, $value)
Get URI with modified parameters.
Definition: URI.php:384