ILIAS
release_8 Revision v8.19
◀ 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
n
o
p
r
s
t
u
v
w
x
+
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
j
l
m
p
s
t
u
+
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
r
s
t
u
v
w
x
z
+
Functions
_
a
b
c
d
e
g
h
i
m
n
p
r
s
t
u
v
x
+
Variables
$
a
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
z
Examples
•
All
Data Structures
Namespaces
Files
Functions
Variables
Modules
Pages
class.ilPCSectionEditorGUI.php
Go to the documentation of this file.
1
<?php
2
19
use
ILIAS\COPage\Editor\Server\UIWrapper
;
20
24
class
ilPCSectionEditorGUI
implements
\ILIAS\COPage\Editor\Components\PageComponentEditor
25
{
26
protected \ilLanguage
$lng
;
27
protected \ilCtrl
$ctrl
;
28
29
public
function
__construct
()
30
{
31
global
$DIC
;
32
33
$this->
lng
= $DIC->language();
34
$this->
ctrl
= $DIC->ctrl();
35
}
36
37
public
function
getEditorElements
(
38
UIWrapper
$ui_wrapper,
39
string
$page_type,
40
ilPageObjectGUI
$page_gui,
41
int
$style_id
42
): array {
43
$form = $this->
getCreationForm
($page_gui, $ui_wrapper, $style_id);
44
return
[
45
"creation_form"
=> $form,
46
"icon"
=> $ui_wrapper->
getRenderedIcon
(
"pesc"
)
47
];
48
}
49
50
protected
function
getCreationForm
(
51
ilPageObjectGUI
$page_gui,
52
UIWrapper
$ui_wrapper,
53
int
$style_id
54
): string {
55
$ctrl =
$this->ctrl
;
56
$lng =
$this->lng
;
57
58
$sec_gui =
new
ilPCSectionGUI
($page_gui->
getPageObject
(), null,
""
,
""
);
59
$sec_gui->
setStyleId
($style_id);
60
$sec_gui->setPageConfig($page_gui->
getPageConfig
());
61
62
$html = $ctrl->getHTML(
63
$sec_gui,
64
[
65
"form"
=>
true
,
66
"ui_wrapper"
=> $ui_wrapper,
67
"insert"
=>
true
,
68
"buttons"
=> [[
"Page"
,
"component.save"
, $lng->txt(
"insert"
)],
69
[
"Page"
,
"component.cancel"
, $lng->txt(
"cancel"
)]]
70
]
71
);
72
73
return
$html;
74
}
75
76
public
function
getEditComponentForm
(
77
UIWrapper
$ui_wrapper,
78
string
$page_type,
79
\
ilPageObjectGUI
$page_gui,
80
int
$style_id,
81
string
$pcid
82
): string {
83
$ctrl =
$this->ctrl
;
84
$lng =
$this->lng
;
85
86
$page = $page_gui->
getPageObject
();
87
$page->addHierIDs();
88
$hier_id = $page->getHierIdForPcId($pcid);
89
$sec = $page->getContentObjectForPcId($pcid);
90
91
92
$sec_gui =
new
ilPCSectionGUI
($page_gui->
getPageObject
(), $sec, $hier_id, $pcid);
93
$sec_gui->
setStyleId
($style_id);
94
$sec_gui->setPageConfig($page_gui->
getPageConfig
());
95
96
$html = $ctrl->getHTML(
97
$sec_gui,
98
[
99
"form"
=>
true
,
100
"ui_wrapper"
=> $ui_wrapper,
101
"buttons"
=> [[
"Page"
,
"component.update"
, $lng->txt(
"save"
)],
102
[
"Page"
,
"component.cancel"
, $lng->txt(
"cancel"
)]]
103
]
104
);
105
106
return
$html;
107
}
108
}
ILIAS\COPage\Editor\Components\PageComponentEditor
Definition:
interface.PageComponentEditor.php:26
ilPageObjectGUI\getPageObject
getPageObject()
Definition:
class.ilPageObjectGUI.php:354
ILIAS\COPage\Editor\Server\UIWrapper
Definition:
class.UIWrapper.php:25
ilPCSectionEditorGUI\$lng
ilLanguage $lng
Definition:
class.ilPCSectionEditorGUI.php:26
ILIAS\COPage\Editor\Server\UIWrapper\getRenderedIcon
getRenderedIcon(string $type)
Definition:
class.UIWrapper.php:321
UIWrapper
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
ilPCSectionEditorGUI\__construct
__construct()
Definition:
class.ilPCSectionEditorGUI.php:29
ilPageObjectGUI
Class ilPageObjectGUI.
Definition:
class.ilPageObjectGUI.php:33
ilPCSectionEditorGUI
Definition:
class.ilPCSectionEditorGUI.php:24
$DIC
global $DIC
Definition:
feed.php:28
ilPCSectionEditorGUI\getCreationForm
getCreationForm(ilPageObjectGUI $page_gui, UIWrapper $ui_wrapper, int $style_id)
Definition:
class.ilPCSectionEditorGUI.php:50
ILIAS\Repository\ctrl
ctrl()
Definition:
trait.GlobalDICGUIServices.php:52
ilPCSectionEditorGUI\getEditComponentForm
getEditComponentForm(UIWrapper $ui_wrapper, string $page_type, \ilPageObjectGUI $page_gui, int $style_id, string $pcid)
Get rendered editor elements.
Definition:
class.ilPCSectionEditorGUI.php:76
ILIAS\Repository\lng
lng()
Definition:
trait.GlobalDICDomainServices.php:56
ilPageObjectGUI\getPageConfig
getPageConfig()
Definition:
class.ilPageObjectGUI.php:344
ilPageContentGUI\setStyleId
setStyleId(int $a_styleid)
Definition:
class.ilPageContentGUI.php:137
ilPCSectionGUI
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition:
class.ilPCSectionGUI.php:24
ilPCSectionEditorGUI\$ctrl
ilCtrl $ctrl
Definition:
class.ilPCSectionEditorGUI.php:27
ilPCSectionEditorGUI\getEditorElements
getEditorElements(UIWrapper $ui_wrapper, string $page_type, ilPageObjectGUI $page_gui, int $style_id)
Definition:
class.ilPCSectionEditorGUI.php:37
Services
COPage
Editor
Components
Section
class.ilPCSectionEditorGUI.php
Generated on Fri Apr 4 2025 22:02:32 for ILIAS by
1.8.13 (using
Doxyfile
)