19 declare(strict_types=1);
41 protected \ILIAS\Data\Factory
$df;
43 protected \ilLanguage
$lng;
46 protected \ilCtrlInterface
$ctrl;
47 protected \ILIAS\DI\UIServices
$ui;
53 protected string $title,
55 protected object $parent_gui,
56 protected string $parent_cmd =
"tableCommand",
60 $this->
ui = $DIC->ui();
61 $this->
ctrl = $DIC->ctrl();
62 $this->
http = $DIC->http();
63 $this->
lng = $DIC->language();
65 $this->df = new \ILIAS\Data\Factory();
68 $this->
namespace = $id;
71 $form_action = $this->df->uri(
72 ILIAS_HTTP_PATH .
'/' .
73 $this->
ctrl->getLinkTarget($this->parent_gui, $this->parent_cmd)
75 $this->url_builder =
new URLBuilder($form_action);
77 $this->url_builder->acquireParameters(
95 bool $sortable =
false 97 $column = $this->
ui->factory()->table()->column()->text($title)->withIsSortable($sortable);
105 bool $sortable =
false 107 $column = $this->
ui->factory()->table()->column()->statusIcon($title);
117 $this->
addAction(self::SINGLE, $action, $title, $async);
124 string $id_param =
"" 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;
140 $this->
addAction(self::STANDARD, $action, $title);
148 $this->
addAction(self::MULTI, $action, $title);
152 protected function addAction(
int $type,
string $action,
string $title,
bool $async =
false): void
154 $this->actions[$action] = [
160 $this->last_action_key = $action;
166 throw new \ilException(
"Missing Input Key: " . $key);
168 if (isset($this->columns[$key])) {
169 throw new \ilException(
"Duplicate Input Key: " . $key);
171 $this->columns[$key] = $column;
172 $this->last_key = $key;
177 if (!isset($this->columns[$key])) {
178 throw new \ilException(
"Unknown Key: " . $key);
180 return $this->columns[$key];
190 if ($this->last_key !==
"") {
197 $ids = $this->
intArray($this->row_id_token->getName());
198 if (count($ids) > 0) {
201 $ids = $this->
intArray(
"interruptive_items");
202 if (count($ids) > 0) {
210 $action = $this->
str($this->action_parameter_token->getName());
211 if ($action !==
"") {
212 if ($this->actions[$action][
"type"] === self::SINGLE) {
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(
219 $this->actions[$action][
"redirect_id_param"],
223 $cmd = $this->actions[$action][
"redirect_cmd"] ?? $action;
224 $this->
ctrl->redirectByClass($this->actions[$action][
"redirect_class_path"], $cmd);
226 $this->parent_gui->$action(
$id);
228 $this->parent_gui->$action($this->
getItemIds());
235 $a = $this->
ui->factory()->table()->action();
237 if (is_null($this->table)) {
239 foreach ($this->columns as $key => $column) {
240 $columns[$key] = $column;
243 foreach ($this->actions as $act) {
244 switch ($act[
"type"]) {
246 $actions[$act[
"action"]] =
$a->single(
248 $this->url_builder->withParameter($this->action_parameter_token, $act[
"action"]),
253 $actions[$act[
"action"]] =
$a->standard(
255 $this->url_builder->withParameter($this->action_parameter_token, $act[
"action"]),
260 $actions[$act[
"action"]] =
$a->multi(
262 $this->url_builder->withParameter($this->action_parameter_token, $act[
"action"]),
268 $actions[$act[
"action"]] = $actions[$act[
"action"]]->withAsync(
true);
271 if ($this->order_cmd !==
"") {
272 $uri = $this->df->uri(
273 ILIAS_HTTP_PATH .
'/' .
274 $this->
ctrl->getLinkTarget($this->parent_gui, $this->order_cmd)
281 ->ordering($table_retrieval, $uri, $this->title, $columns)
283 ->withActions($actions)
284 ->withRequest($this->
http->request());
291 ->data($table_retrieval, $this->title, $columns)
293 ->withActions($actions)
294 ->withRequest($this->
http->request());
302 return $this->
getTable()->getData();
307 $html = $this->
ui->renderer()->render($this->
getTable());
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.
standardAction(string $action, string $title)
__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
getColumnForKey(string $key)
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.
multiAction(string $action, string $title)
static http()
Fetches the global http state from ILIAS.
textColumn(string $key, string $title, bool $sortable=false)
URLBuilderToken $row_id_token
ordering(string $order_cmd)
addColumn(string $key, Column $column)
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
$a
thx to https://mlocati.github.io/php-cs-fixer-configurator for the examples
singleAction(string $action, string $title, bool $async=false)
URLBuilderToken $action_parameter_token
redirect(array $class_path, string $cmd="", string $id_param="")
A Column describes the form of presentation for a certain aspect of data, i.e.
replaceLastColumn(Column $column)