ILIAS  trunk Revision v12.0_alpha-1613-gae4c99ebb18
TableActionExecutorTrait.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
22
25
27{
28 public function execute(URLBuilder $url_builder): ?Modal
29 {
30 return $this->getTableActions()->execute(...$this->acquireParameters($url_builder));
31 }
32
33 abstract protected function acquireParameters(URLBuilder $url_builder): array;
34
35 abstract protected function getTableActions(): TableActions;
36}
This describes commonalities between the different modals.
Definition: Modal.php:35