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
class.ilPCLayoutTemplate.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
27
class
ilPCLayoutTemplate
extends
ilPageContent
28
{
29
public
function
init
(): void
30
{
31
$this->
setType
(
"lay"
);
32
}
33
34
public
function
create
(
ilPageObject
$a_pg_obj,
string
$a_hier_id,
string
$a_pc_id,
int
$a_tmpl): void
35
{
36
$source_page =
ilPageObjectFactory::getInstance
(
"stys"
, $a_tmpl);
37
$source_page->buildDom();
38
$source_page->addHierIDs();
39
$hier_ids = $source_page->getHierIds();
40
41
$copy_ids = array();
42
foreach
($hier_ids as
$hier_id
) {
43
// move top level nodes only
44
if
(!is_int(strpos($hier_id,
"_"
))) {
45
if
($hier_id !=
"pg"
) {
46
$copy_ids[] =
$hier_id
;
47
}
48
}
49
}
50
arsort($copy_ids);
51
52
foreach
($copy_ids as $copy_id) {
53
$source_content = $source_page->getContentObject($copy_id);
54
55
$source_node = $source_content->getDomNode();
56
$clone_node = $source_node->cloneNode(
true
);
57
$this->log->debug($this->dom_util->dump($clone_node));
58
//$clone_node->unlink_node($clone_node);
59
$clone_node = $this->
getPage
()->getDomDoc()->importNode($clone_node,
true
);
60
61
// insert cloned node at target
62
$source_content->setDomNode($clone_node);
63
$this->
getPage
()->insertContent($source_content, $a_hier_id,
IL_INSERT_AFTER
, $a_pc_id);
64
65
$xpath =
new
DOMXpath($this->
getPage
()->
getDomDoc
());
66
if
($clone_node->getAttribute(
"PCID"
) !=
""
) {
67
$clone_node->setAttribute(
"PCID"
,
""
);
68
}
69
$els = $xpath->query(
".//*[@PCID]"
, $clone_node);
70
foreach
($els as $el) {
71
$el->setAttribute(
"PCID"
,
""
);
72
}
73
}
74
75
$this->
getPage
()->update();
76
}
77
}
ilPageContent\setType
setType(string $a_type)
Set Type.
Definition:
class.ilPageContent.php:103
ilPCLayoutTemplate
Layout templates are not existing in the page.
Definition:
class.ilPCLayoutTemplate.php:27
ilPageContent\getDomDoc
getDomDoc()
Definition:
class.ilPageContent.php:118
ilPageContent\getPage
getPage()
Definition:
class.ilPageContent.php:88
ilPageContent
Content object of ilPageObject (see ILIAS DTD).
Definition:
class.ilPageContent.php:28
ilPCLayoutTemplate\init
init()
Definition:
class.ilPCLayoutTemplate.php:29
ilPCLayoutTemplate\create
create(ilPageObject $a_pg_obj, string $a_hier_id, string $a_pc_id, int $a_tmpl)
Definition:
class.ilPCLayoutTemplate.php:34
ilPageObject
Class ilPageObject Handles PageObjects of ILIAS Learning Modules (see ILIAS DTD)
Definition:
class.ilPageObject.php:52
IL_INSERT_AFTER
const IL_INSERT_AFTER
Definition:
class.ilPageObject.php:20
ilPageObjectFactory\getInstance
static getInstance(string $a_parent_type, int $a_id=0, int $a_old_nr=0, string $a_lang="-")
Get page object instance.
Definition:
class.ilPageObjectFactory.php:29
ilPageContent\$hier_id
string $hier_id
Definition:
class.ilPageContent.php:35
components
ILIAS
COPage
PC
LayoutTemplate
class.ilPCLayoutTemplate.php
Generated on Thu Apr 3 2025 23:02:39 for ILIAS by
1.8.13 (using
Doxyfile
)