ILIAS
trunk Revision v11.0_alpha-1689-g66c127b4ae8
◀ ilDoc Overview
Main Page
Related Pages
Modules
+
Namespaces
Namespace List
+
Namespace Members
+
All
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Functions
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
u
v
w
x
+
Variables
$
c
e
g
h
j
l
m
p
s
t
u
v
+
Enumerations
a
c
e
f
i
j
l
m
n
o
p
r
s
t
u
v
z
+
Enumerator
a
c
d
e
f
g
i
l
m
n
o
p
q
s
t
u
v
y
+
Data Structures
Data Structures
Data Structure Index
Class Hierarchy
+
Data Fields
+
All
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Ö
+
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Variables
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Ö
Enumerations
Enumerator
+
Files
File List
+
Globals
+
All
$
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
z
+
Functions
a
b
c
d
e
f
g
h
i
m
n
p
r
s
t
u
v
+
Variables
$
a
c
e
g
h
i
m
n
o
p
r
s
t
u
v
z
Enumerations
Enumerator
Examples
•
All
Data Structures
Namespaces
Files
Functions
Variables
Enumerations
Enumerator
Modules
Pages
class.GridCommandActionHandler.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
21
namespace
ILIAS\COPage\PC\Grid
;
22
23
use
ILIAS\DI\Exceptions\Exception
;
24
use
ILIAS\COPage\Editor\Server
;
25
29
class
GridCommandActionHandler
implements
Server\CommandActionHandler
30
{
31
protected \ILIAS\DI\UIServices
$ui
;
32
protected \ilLanguage
$lng
;
33
protected \ilPageObjectGUI
$page_gui
;
34
protected \ilObjUser
$user
;
35
protected
Server\UIWrapper
$ui_wrapper
;
36
37
public
function
__construct
(\
ilPageObjectGUI
$page_gui)
38
{
39
global
$DIC
;
40
41
$this->
ui
= $DIC->ui();
42
$this->
lng
= $DIC->language();
43
$this->page_gui =
$page_gui
;
44
$this->
user
= $DIC->user();
45
46
$this->ui_wrapper =
new
Server\UIWrapper($this->
ui
, $this->
lng
);
47
}
48
49
public
function
handle
(array $query, array $body):
Server
\
Response
50
{
51
switch
($body[
"action"
]) {
52
case
"insert"
:
53
return
$this->
insertCommand
($body);
54
55
default
:
56
throw
new
Exception
(
"Unknown action "
. $body[
"action"
]);
57
}
58
}
59
60
protected
function
insertCommand
(array $body):
Server
\
Response
61
{
62
$page = $this->page_gui->getPageObject();
63
64
$hier_id =
"pg"
;
65
$pc_id =
""
;
66
if
(!in_array($body[
"after_pcid"
], [
""
,
"pg"
])) {
67
$hier_ids = $page->getHierIdsForPCIds([$body[
"after_pcid"
]]);
68
$hier_id = $hier_ids[$body[
"after_pcid"
]];
69
$pc_id = $body[
"after_pcid"
];
70
}
71
72
// if ($form->checkInput()) {
73
$post_layout_template = (
int
) $body[
"layout_template"
];
74
$grid = new \ilPCGrid($page);
75
$grid->create($page, $hier_id, $pc_id);
76
$grid->applyTemplate(
77
$post_layout_template,
78
(
int
) $body[
"number_of_cells"
],
79
(
int
) $body[
"s"
],
80
(
int
) $body[
"m"
],
81
(
int
) $body[
"l"
],
82
(
int
) $body[
"xl"
]
83
);
84
$updated = $page->update();
85
86
return
$this->ui_wrapper->sendPage($this->page_gui, $updated);
87
}
88
}
ILIAS\COPage\Editor\Server\Response
Definition:
class.Response.php:24
ILIAS\COPage\PC\Grid\GridCommandActionHandler\$ui
ILIAS DI UIServices $ui
Definition:
class.GridCommandActionHandler.php:31
ILIAS\COPage\PC\Grid\GridCommandActionHandler\insertCommand
insertCommand(array $body)
Definition:
class.GridCommandActionHandler.php:60
ilPageObjectGUI
Class ilPageObjectGUI.
Definition:
class.ilPageObjectGUI.php:33
ILIAS\COPage\PC\Grid\GridCommandActionHandler\handle
handle(array $query, array $body)
Definition:
class.GridCommandActionHandler.php:49
ILIAS\Repository\user
user()
Definition:
trait.GlobalDICDomainServices.php:66
ILIAS\COPage\PC\Grid\GridCommandActionHandler\$user
ilObjUser $user
Definition:
class.GridCommandActionHandler.php:34
ILIAS\COPage\Editor\Server
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition:
class.Response.php:19
Exception
ILIAS\COPage\PC\Grid\GridCommandActionHandler\$ui_wrapper
Server UIWrapper $ui_wrapper
Definition:
class.GridCommandActionHandler.php:35
ILIAS\COPage\Editor\Server\Server
Page editor json server.
Definition:
class.Server.php:41
ILIAS\Repository\lng
lng()
Definition:
trait.GlobalDICDomainServices.php:61
ILIAS\Repository\ui
ui()
Definition:
trait.GlobalDICGUIServices.php:53
$DIC
global $DIC
Definition:
shib_login.php:22
ILIAS\COPage\PC\Grid\GridCommandActionHandler\__construct
__construct(\ilPageObjectGUI $page_gui)
Definition:
class.GridCommandActionHandler.php:37
ILIAS\COPage\PC\Grid\GridCommandActionHandler
Definition:
class.GridCommandActionHandler.php:29
ILIAS\COPage\PC\Grid\GridCommandActionHandler\$page_gui
ilPageObjectGUI $page_gui
Definition:
class.GridCommandActionHandler.php:33
ILIAS\COPage\PC\Grid
Definition:
class.GridCommandActionHandler.php:21
ILIAS\COPage\PC\Grid\GridCommandActionHandler\$lng
ilLanguage $lng
Definition:
class.GridCommandActionHandler.php:32
ILIAS\Repository\int
int(string $key)
Definition:
trait.BaseGUIRequest.php:61
Exception
components
ILIAS
COPage
PC
Grid
class.GridCommandActionHandler.php
Generated on Wed Apr 2 2025 23:02:35 for ILIAS by
1.8.13 (using
Doxyfile
)