ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.TableAdapterGUI.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
28 
30 {
31  use BaseGUIRequest;
32 
33  protected const STANDARD = 0;
34  protected const SINGLE = 1;
35  protected const MULTI = 2;
36  protected string $order_cmd = "";
37  protected string $last_action_key;
41  protected \ILIAS\Data\Factory $df;
42 
43  protected \ilLanguage $lng;
44  protected ?Table $table = null;
45  protected string $last_key;
46  protected \ilCtrlInterface $ctrl;
47  protected \ILIAS\DI\UIServices $ui;
48  protected array $columns = [];
49  protected array $actions = [];
50 
51  public function __construct(
52  protected string $id,
53  protected string $title,
54  protected RetrievalInterface $retrieval,
55  protected object $parent_gui,
56  protected string $parent_cmd = "tableCommand",
57  protected string $namespace = ""
58  ) {
59  global $DIC;
60  $this->ui = $DIC->ui();
61  $this->ctrl = $DIC->ctrl();
62  $this->http = $DIC->http();
63  $this->lng = $DIC->language();
64  $this->refinery = $DIC->refinery();
65  $this->df = new \ILIAS\Data\Factory();
66  $this->initRequest($this->http, $this->refinery);
67  if ($namespace === "") {
68  $this->namespace = $id;
69  }
70 
71  $form_action = $this->df->uri(
72  ILIAS_HTTP_PATH . '/' .
73  $this->ctrl->getLinkTarget($this->parent_gui, $this->parent_cmd)
74  );
75  $this->url_builder = new URLBuilder($form_action);
77  $this->url_builder->acquireParameters(
78  [$this->namespace], // namespace
79  "table_action", //this is the actions's parameter name
80  "ids" //this is the parameter name to be used for row-ids
81  );
82 
83  }
84 
85  public function ordering(
86  string $order_cmd
87  ): self {
88  $this->order_cmd = $order_cmd;
89  return $this;
90  }
91 
92  public function textColumn(
93  string $key,
94  string $title,
95  bool $sortable = false
96  ): self {
97  $column = $this->ui->factory()->table()->column()->text($title)->withIsSortable($sortable);
98  $this->addColumn($key, $column);
99  return $this;
100  }
101 
102  public function iconColumn(
103  string $key,
104  string $title,
105  bool $sortable = false
106  ): self {
107  $column = $this->ui->factory()->table()->column()->statusIcon($title);
108  $this->addColumn($key, $column);
109  return $this;
110  }
111 
112  public function singleAction(
113  string $action,
114  string $title,
115  bool $async = false
116  ): self {
117  $this->addAction(self::SINGLE, $action, $title, $async);
118  return $this;
119  }
120 
121  public function redirect(
122  array $class_path,
123  string $cmd = "",
124  string $id_param = ""
125  ): self {
126  $act = $this->actions[$this->last_action_key] ?? false;
127  if ($act && $act["type"] === self::SINGLE) {
128  $act["redirect_class_path"] = $class_path;
129  $act["redirect_cmd"] = $cmd;
130  $act["redirect_id_param"] = $id_param;
131  $this->actions[$this->last_action_key] = $act;
132  }
133  return $this;
134  }
135 
136  public function standardAction(
137  string $action,
138  string $title
139  ): self {
140  $this->addAction(self::STANDARD, $action, $title);
141  return $this;
142  }
143 
144  public function multiAction(
145  string $action,
146  string $title
147  ): self {
148  $this->addAction(self::MULTI, $action, $title);
149  return $this;
150  }
151 
152  protected function addAction(int $type, string $action, string $title, bool $async = false): void
153  {
154  $this->actions[$action] = [
155  "type" => $type,
156  "action" => $action,
157  "title" => $title,
158  "async" => $async
159  ];
160  $this->last_action_key = $action;
161  }
162 
163  protected function addColumn(string $key, Column $column): void
164  {
165  if ($key === "") {
166  throw new \ilException("Missing Input Key: " . $key);
167  }
168  if (isset($this->columns[$key])) {
169  throw new \ilException("Duplicate Input Key: " . $key);
170  }
171  $this->columns[$key] = $column;
172  $this->last_key = $key;
173  }
174 
175  protected function getColumnForKey(string $key): Column
176  {
177  if (!isset($this->columns[$key])) {
178  throw new \ilException("Unknown Key: " . $key);
179  }
180  return $this->columns[$key];
181  }
182 
183  protected function getLastColumn(): ?Column
184  {
185  return $this->columns[$this->last_key] ?? null;
186  }
187 
188  protected function replaceLastColumn(Column $column): void
189  {
190  if ($this->last_key !== "") {
191  $this->columns[$this->last_key] = $column;
192  }
193  }
194 
195  public function getItemIds(): array
196  {
197  $ids = $this->intArray($this->row_id_token->getName());
198  if (count($ids) > 0) {
199  return $ids; // from table multi action
200  }
201  $ids = $this->intArray("interruptive_items"); // from confirmation
202  if (count($ids) > 0) {
203  return $ids;
204  }
205  return [];
206  }
207 
208  public function handleCommand(): void
209  {
210  $action = $this->str($this->action_parameter_token->getName());
211  if ($action !== "") {
212  if ($this->actions[$action]["type"] === self::SINGLE) {
213  $id = $this->getItemIds()[0];
214  if ($this->actions[$action]["redirect_class_path"] ?? false) {
215  $path = $this->actions[$action]["redirect_class_path"];
216  if ($this->actions[$action]["redirect_id_param"] ?? false) {
217  $this->ctrl->setParameterByClass(
218  $path[count($path) - 1],
219  $this->actions[$action]["redirect_id_param"],
220  $id
221  );
222  }
223  $cmd = $this->actions[$action]["redirect_cmd"] ?? $action;
224  $this->ctrl->redirectByClass($this->actions[$action]["redirect_class_path"], $cmd);
225  }
226  $this->parent_gui->$action($id);
227  } else {
228  $this->parent_gui->$action($this->getItemIds());
229  }
230  }
231  }
232 
233  protected function getTable(): Table
234  {
235  $a = $this->ui->factory()->table()->action();
236 
237  if (is_null($this->table)) {
238  $columns = [];
239  foreach ($this->columns as $key => $column) {
240  $columns[$key] = $column;
241  }
242  $actions = [];
243  foreach ($this->actions as $act) {
244  switch ($act["type"]) {
245  case self::SINGLE:
246  $actions[$act["action"]] = $a->single(
247  $act["title"],
248  $this->url_builder->withParameter($this->action_parameter_token, $act["action"]),
250  );
251  break;
252  case self::STANDARD:
253  $actions[$act["action"]] = $a->standard(
254  $act["title"],
255  $this->url_builder->withParameter($this->action_parameter_token, $act["action"]),
257  );
258  break;
259  case self::MULTI:
260  $actions[$act["action"]] = $a->multi(
261  $act["title"],
262  $this->url_builder->withParameter($this->action_parameter_token, $act["action"]),
264  );
265  break;
266  }
267  if ($act["async"]) {
268  $actions[$act["action"]] = $actions[$act["action"]]->withAsync(true);
269  }
270  }
271  if ($this->order_cmd !== "") {
272  $uri = $this->df->uri(
273  ILIAS_HTTP_PATH . '/' .
274  $this->ctrl->getLinkTarget($this->parent_gui, $this->order_cmd)
275  );
276  $table_retrieval = new OrderingRetrieval($this->retrieval);
277  $this->table = $this
278  ->ui
279  ->factory()
280  ->table()
281  ->ordering($table_retrieval, $uri, $this->title, $columns)
282  ->withId($this->id)
283  ->withActions($actions)
284  ->withRequest($this->http->request());
285  } else {
286  $table_retrieval = new TableRetrieval($this->retrieval);
287  $this->table = $this
288  ->ui
289  ->factory()
290  ->table()
291  ->data($table_retrieval, $this->title, $columns)
292  ->withId($this->id)
293  ->withActions($actions)
294  ->withRequest($this->http->request());
295  }
296  }
297  return $this->table;
298  }
299 
300  public function getData(): ?array
301  {
302  return $this->getTable()->getData();
303  }
304 
305  public function render(): string
306  {
307  $html = $this->ui->renderer()->render($this->getTable());
308  return $html;
309  }
310 }
if($err=$client->getError()) $namespace
addAction(int $type, string $action, string $title, bool $async=false)
iconColumn(string $key, string $title, bool $sortable=false)
trait BaseGUIRequest
Base gui request wrapper.
$path
Definition: ltiservices.php:29
__construct(protected string $id, protected string $title, protected RetrievalInterface $retrieval, protected object $parent_gui, protected string $parent_cmd="tableCommand", protected string $namespace="")
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
initRequest(HTTP\Services $http, Refinery\Factory $refinery, ?array $passed_query_params=null, ?array $passed_post_data=null)
Query params and post data parameters are used for testing.
static http()
Fetches the global http state from ILIAS.
global $DIC
Definition: shib_login.php:22
textColumn(string $key, string $title, bool $sortable=false)
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
Definition: plugin.php:23
$a
thx to https://mlocati.github.io/php-cs-fixer-configurator for the examples
singleAction(string $action, string $title, bool $async=false)
URLBuilder.
Definition: URLBuilder.php:40
redirect(array $class_path, string $cmd="", string $id_param="")
A Column describes the form of presentation for a certain aspect of data, i.e.
Definition: Column.php:27