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.LayoutTemplateCommandActionHandler.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
21
namespace
ILIAS\COPage\PC\LayoutTemplate
;
22
23
use
ILIAS\DI\Exceptions\Exception
;
24
use
ILIAS\COPage\Editor\Server
;
25
26
class
LayoutTemplateCommandActionHandler
implements
Server\CommandActionHandler
27
{
28
protected \ILIAS\DI\UIServices
$ui
;
29
protected \ilLanguage
$lng
;
30
protected \ilPageObjectGUI
$page_gui
;
31
protected \ilObjUser
$user
;
32
protected
Server\UIWrapper
$ui_wrapper
;
33
34
public
function
__construct
(\
ilPageObjectGUI
$page_gui)
35
{
36
global
$DIC
;
37
38
$this->
ui
= $DIC->ui();
39
$this->
lng
= $DIC->language();
40
$this->page_gui =
$page_gui
;
41
$this->
user
= $DIC->user();
42
43
$this->ui_wrapper =
new
Server\UIWrapper($this->
ui
, $this->
lng
);
44
}
45
46
public
function
handle
(array $query, array $body):
Server
\
Response
47
{
48
switch
($body[
"action"
]) {
49
case
"insert"
:
50
return
$this->
insertCommand
($body);
51
52
default
:
53
throw
new
Exception
(
"Unknown action "
. $body[
"action"
]);
54
}
55
}
56
57
protected
function
insertCommand
(array $body):
Server
\
Response
58
{
59
$page = $this->page_gui->getPageObject();
60
61
$hier_id =
"pg"
;
62
$pc_id =
""
;
63
if
(!in_array($body[
"after_pcid"
], [
""
,
"pg"
])) {
64
$hier_ids = $page->getHierIdsForPCIds([$body[
"after_pcid"
]]);
65
$hier_id = $hier_ids[$body[
"after_pcid"
]];
66
$pc_id = $body[
"after_pcid"
];
67
}
68
69
$lay = new \ilPCLayoutTemplate($page);
70
$lay->create($page, $hier_id, $pc_id, (
int
) $body[
"tmpl"
]);
71
$updated = $page->update();
72
73
return
$this->ui_wrapper->sendPage($this->page_gui, $updated);
74
}
75
}
ILIAS\COPage\Editor\Server\Response
Definition:
class.Response.php:24
ilPageObjectGUI
Class ilPageObjectGUI.
Definition:
class.ilPageObjectGUI.php:33
ILIAS\COPage\PC\LayoutTemplate\LayoutTemplateCommandActionHandler\__construct
__construct(\ilPageObjectGUI $page_gui)
Definition:
class.LayoutTemplateCommandActionHandler.php:34
ILIAS\Repository\user
user()
Definition:
trait.GlobalDICDomainServices.php:66
ILIAS\COPage\PC\LayoutTemplate\LayoutTemplateCommandActionHandler\$lng
ilLanguage $lng
Definition:
class.LayoutTemplateCommandActionHandler.php:29
ILIAS\COPage\PC\LayoutTemplate\LayoutTemplateCommandActionHandler\$ui_wrapper
Server UIWrapper $ui_wrapper
Definition:
class.LayoutTemplateCommandActionHandler.php:32
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\LayoutTemplate
Definition:
class.LayoutTemplateCommandActionHandler.php:21
ILIAS\COPage\PC\LayoutTemplate\LayoutTemplateCommandActionHandler\$page_gui
ilPageObjectGUI $page_gui
Definition:
class.LayoutTemplateCommandActionHandler.php:30
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\LayoutTemplate\LayoutTemplateCommandActionHandler\handle
handle(array $query, array $body)
Definition:
class.LayoutTemplateCommandActionHandler.php:46
ILIAS\COPage\PC\LayoutTemplate\LayoutTemplateCommandActionHandler
Definition:
class.LayoutTemplateCommandActionHandler.php:26
ILIAS\COPage\PC\LayoutTemplate\LayoutTemplateCommandActionHandler\$user
ilObjUser $user
Definition:
class.LayoutTemplateCommandActionHandler.php:31
ILIAS\COPage\PC\LayoutTemplate\LayoutTemplateCommandActionHandler\insertCommand
insertCommand(array $body)
Definition:
class.LayoutTemplateCommandActionHandler.php:57
ILIAS\COPage\PC\LayoutTemplate\LayoutTemplateCommandActionHandler\$ui
ILIAS DI UIServices $ui
Definition:
class.LayoutTemplateCommandActionHandler.php:28
Exception
components
ILIAS
COPage
PC
LayoutTemplate
class.LayoutTemplateCommandActionHandler.php
Generated on Wed Apr 2 2025 23:02:35 for ILIAS by
1.8.13 (using
Doxyfile
)