ILIAS
trunk Revision v11.0_alpha-1702-gfd3ecb7f852
◀ 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
ResourcesCommandActionHandler.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
21
namespace
ILIAS\COPage\PC\Resources
;
22
23
use
ILIAS\DI\Exceptions\Exception
;
24
use
ILIAS\COPage\Editor\Server
;
25
29
class
ResourcesCommandActionHandler
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
case
"update"
:
56
return
$this->updateCommand($body);
57
58
default
:
59
throw
new
Exception
(
"Unknown action "
. $body[
"action"
]);
60
}
61
}
62
63
protected
function
insertCommand
(array $body):
Server
\
Response
64
{
65
$page = $this->page_gui->getPageObject();
66
67
$hier_id =
"pg"
;
68
$pc_id =
""
;
69
if
(!in_array($body[
"after_pcid"
], [
""
,
"pg"
])) {
70
$hier_ids = $page->getHierIdsForPCIds([$body[
"after_pcid"
]]);
71
$hier_id = $hier_ids[$body[
"after_pcid"
]];
72
$pc_id = $body[
"after_pcid"
];
73
}
74
75
// if ($form->checkInput()) {
76
$res
= new \ilPCResources($page);
77
$res
->create($page, $hier_id, $pc_id);
78
79
$res_type = $body[
"res_type"
];
80
81
$invalid =
false
;
82
if
($res_type ===
"_other"
) {
83
$res
->setResourceListType(
"_other"
);
84
} elseif ($res_type ===
"_lobj"
) {
85
$res
->setResourceListType(
"_lobj"
);
86
} elseif ($res_type !==
"itgr"
) {
87
if
(isset($body[
"type"
])) {
88
$res
->setResourceListType(
89
$body[
"type"
]
90
);
91
}
else
{
92
$invalid =
true
;
93
}
94
}
else
{
95
$res
->setItemGroupRefId(
96
(
int
) $body[
"itgr"
]
97
);
98
}
99
100
if
(!$invalid) {
101
$updated = $page->update();
102
}
else
{
103
$page->buildDom(
true
);
// rebuild dom (remove changes)
104
$updated =
true
;
105
}
106
107
return
$this->ui_wrapper->sendPage($this->page_gui, $updated);
108
}
109
110
protected
function
updateCommand(array $body): Server\Response
111
{
112
$page = $this->page_gui->getPageObject();
113
115
$res
= $page->getContentObjectForPcId($body[
"pcid"
]);
116
117
$res_type = $body[
"res_type"
];
118
119
if
($res_type ===
"_other"
) {
120
$res
->setResourceListType(
"_other"
);
121
} elseif ($res_type ===
"_lobj"
) {
122
$res
->setResourceListType(
"_lobj"
);
123
} elseif ($res_type !==
"itgr"
) {
124
$res
->setResourceListType(
125
$body[
"type"
]
126
);
127
}
else
{
128
$res
->setItemGroupRefId(
129
(
int
) $body[
"itgr"
]
130
);
131
}
132
133
$updated = $page->update();
134
if
($page instanceof \
ilContainerPage
) {
135
$page->addMissingContainerBlocks($this->page_gui->getItemPresentationManager());
136
}
137
138
return
$this->ui_wrapper->sendPage($this->page_gui, $updated);
139
}
140
}
ILIAS\COPage\PC\Resources\ResourcesCommandActionHandler\$lng
ilLanguage $lng
Definition:
ResourcesCommandActionHandler.php:32
ILIAS\COPage\Editor\Server\Response
Definition:
class.Response.php:24
$res
$res
Definition:
ltiservices.php:66
ILIAS\COPage\PC\Resources\ResourcesCommandActionHandler\handle
handle(array $query, array $body)
Definition:
ResourcesCommandActionHandler.php:49
ILIAS\COPage\PC\Resources\ResourcesCommandActionHandler\$page_gui
ilPageObjectGUI $page_gui
Definition:
ResourcesCommandActionHandler.php:33
ILIAS\COPage\PC\Resources\ResourcesCommandActionHandler\__construct
__construct(\ilPageObjectGUI $page_gui)
Definition:
ResourcesCommandActionHandler.php:37
ilPageObjectGUI
Class ilPageObjectGUI.
Definition:
class.ilPageObjectGUI.php:33
ILIAS\Repository\user
user()
Definition:
trait.GlobalDICDomainServices.php:66
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
ilContainerPage
Container page object.
Definition:
class.ilContainerPage.php:26
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\Resources
Definition:
ResourcesCommandActionHandler.php:21
ILIAS\COPage\PC\Resources\ResourcesCommandActionHandler
Definition:
ResourcesCommandActionHandler.php:29
ILIAS\COPage\PC\Resources\ResourcesCommandActionHandler\$user
ilObjUser $user
Definition:
ResourcesCommandActionHandler.php:34
ILIAS\COPage\PC\Resources\ResourcesCommandActionHandler\$ui_wrapper
Server UIWrapper $ui_wrapper
Definition:
ResourcesCommandActionHandler.php:35
ILIAS\COPage\PC\Resources\ResourcesCommandActionHandler\$ui
ILIAS DI UIServices $ui
Definition:
ResourcesCommandActionHandler.php:31
ILIAS\COPage\PC\Resources\ResourcesCommandActionHandler\insertCommand
insertCommand(array $body)
Definition:
ResourcesCommandActionHandler.php:63
Exception
components
ILIAS
COPage
PC
Resources
ResourcesCommandActionHandler.php
Generated on Thu Apr 3 2025 23:02:40 for ILIAS by
1.8.13 (using
Doxyfile
)