ILIAS
release_7 Revision v7.30-3-g800a261c036
◀ ilDoc Overview
Main Page
Related Pages
Modules
+
Namespaces
Namespace List
+
Namespace Members
+
All
$
_
a
b
c
d
e
f
g
h
i
j
l
m
p
r
s
t
w
+
Functions
_
a
b
c
f
g
h
i
r
s
t
w
+
Variables
$
c
d
e
f
g
h
j
l
m
p
s
t
+
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
+
Files
File List
+
Globals
+
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
z
+
Functions
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
w
x
+
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
z
Examples
•
All
Data Structures
Namespaces
Files
Functions
Variables
Modules
Pages
class.GridCommandActionHandler.php
Go to the documentation of this file.
1
<?php
2
3
/* Copyright (c) 1998-2020 ILIAS open source, Extended GPL, see docs/LICENSE */
4
5
namespace
ILIAS\COPage\Editor\Components\Grid
;
6
7
use
ILIAS\DI\Exceptions\Exception
;
8
use
ILIAS\COPage\Editor\Server
;
9
13
class
GridCommandActionHandler
implements
Server\CommandActionHandler
14
{
18
protected
$ui
;
19
23
protected
$lng
;
24
28
protected
$page_gui
;
29
33
protected
$user
;
34
38
protected
$ui_wrapper
;
39
40
public
function
__construct
(\
ilPageObjectGUI
$page_gui
)
41
{
42
global
$DIC
;
43
44
$this->
ui
= $DIC->ui();
45
$this->lng = $DIC->language();
46
$this->page_gui =
$page_gui
;
47
$this->
user
= $DIC->user();
48
49
$this->ui_wrapper =
new
Server\UIWrapper
($this->
ui
, $this->lng);
50
}
51
57
public
function
handle
(
$query
, $body) :
Server
\
Response
58
{
59
switch
($body[
"action"
]) {
60
case
"insert"
:
61
return
$this->
insertCommand
($body);
62
break
;
63
64
default
:
65
throw
new
Exception
(
"Unknown action "
. $body[
"action"
]);
66
break
;
67
}
68
}
69
75
protected
function
insertCommand
($body) :
Server
\
Response
76
{
77
$page = $this->page_gui->getPageObject();
78
79
$hier_id =
"pg"
;
80
$pc_id =
""
;
81
if
(!in_array($body[
"after_pcid"
], [
""
,
"pg"
])) {
82
$hier_ids = $page->getHierIdsForPCIds([$body[
"after_pcid"
]]);
83
$hier_id = $hier_ids[$body[
"after_pcid"
]];
84
$pc_id = $body[
"after_pcid"
];
85
}
86
87
// if ($form->checkInput()) {
88
$post_layout_template = (int) $body[
"layout_template"
];
89
$grid = new \ilPCGrid($page);
90
$grid->create($page, $hier_id, $pc_id);
91
$grid->applyTemplate(
92
$post_layout_template,
93
(
int
) $body[
"number_of_cells"
],
94
$body[
"s"
],
95
$body[
"m"
],
96
$body[
"l"
],
97
$body[
"xl"
]
98
);
99
$updated = $page->update();
100
101
return
$this->ui_wrapper->sendPage($this->page_gui, $updated);
102
}
103
}
ILIAS\COPage\Editor\Server\Response
Definition:
class.Response.php:11
ILIAS\COPage\Editor\Components\Grid\GridCommandActionHandler\$page_gui
$page_gui
Definition:
class.GridCommandActionHandler.php:28
ILIAS\COPage\Editor\Server\UIWrapper
Definition:
class.UIWrapper.php:11
ILIAS\COPage\Editor\Components\Grid\GridCommandActionHandler\__construct
__construct(\ilPageObjectGUI $page_gui)
Definition:
class.GridCommandActionHandler.php:40
ilPageObjectGUI
Class ilPageObjectGUI.
Definition:
class.ilPageObjectGUI.php:16
ILIAS\COPage\Editor\Server\CommandActionHandler
Command action handler interface.
Definition:
interface.CommandActionHandler.php:11
ILIAS\COPage\Editor\Components\Grid\GridCommandActionHandler\$ui
$ui
Definition:
class.GridCommandActionHandler.php:18
user
user()
Definition:
user.php:4
ILIAS\COPage\Editor\Components\Grid\GridCommandActionHandler\$lng
$lng
Definition:
class.GridCommandActionHandler.php:23
ILIAS\COPage\Editor\Components\Grid\GridCommandActionHandler\$user
$user
Definition:
class.GridCommandActionHandler.php:33
ILIAS\COPage\Editor\Server
Definition:
class.Response.php:5
Exception
ILIAS\COPage\Editor\Components\Grid\GridCommandActionHandler\handle
handle($query, $body)
Definition:
class.GridCommandActionHandler.php:57
ILIAS\COPage\Editor\Server\Server
Page editor json server.
Definition:
class.Server.php:21
$DIC
global $DIC
Definition:
goto.php:24
ui
ui()
Definition:
ui.php:5
$query
$query
Definition:
proxy_ylocal.php:13
ILIAS\COPage\Editor\Components\Grid\GridCommandActionHandler\insertCommand
insertCommand($body)
All command.
Definition:
class.GridCommandActionHandler.php:75
ILIAS\COPage\Editor\Components\Grid\GridCommandActionHandler\$ui_wrapper
$ui_wrapper
Definition:
class.GridCommandActionHandler.php:38
ILIAS\COPage\Editor\Components\Grid
Definition:
class.GridCommandActionHandler.php:5
ILIAS\COPage\Editor\Components\Grid\GridCommandActionHandler
Definition:
class.GridCommandActionHandler.php:13
Exception
Services
COPage
Editor
Components
Grid
class.GridCommandActionHandler.php
Generated on Thu Apr 3 2025 21:01:12 for ILIAS by
1.8.13 (using
Doxyfile
)