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.ilPCListItem.php
Go to the documentation of this file.
1
<?php
2
24
class
ilPCListItem
extends
ilPageContent
25
{
26
public
function
init
(): void
27
{
28
$this->
setType
(
"li"
);
29
}
30
34
public
function
newItemAfter
(): void
35
{
36
$li = $this->
getNode
();
37
$new_li = $this->dom->create_element(
"ListItem"
);
38
if
($next_li = $li->next_sibling()) {
39
$new_li = $next_li->insert_before($new_li, $next_li);
40
}
else
{
41
$parent_list = $li->parent_node();
42
$new_li = $parent_list->append_child($new_li);
43
}
44
}
45
46
50
public
function
newItemBefore
(): void
51
{
52
$li = $this->
getNode
();
53
$new_li = $this->dom->create_element(
"ListItem"
);
54
$new_li = $li->insert_before($new_li, $li);
55
}
56
57
61
public
function
deleteItem
(): void
62
{
63
$parent_node = $this->
getNode
()->parent_node();
64
$cnt = count($parent_node->child_nodes());
65
if
($cnt == 1) {
66
// if list item is the last one -> delete whole list
67
$grandma = $parent_node->parent_node();
68
$grandma->unlink($grandma);
69
}
else
{
70
$li = $this->
getNode
();
71
$li->unlink($li);
72
}
73
}
74
78
public
function
moveItemDown
(): void
79
{
80
$li = $this->
getNode
();
81
$next = $li->next_sibling();
82
$next_copy = $next->clone_node(
true
);
83
$next_copy = $li->insert_before($next_copy, $li);
84
$next->unlink($next);
85
}
86
90
public
function
moveItemUp
(): void
91
{
92
$li = $this->
getNode
();
93
$prev = $li->previous_sibling();
94
$li_copy = $li->clone_node(
true
);
95
$li_copy = $prev->insert_before($li_copy, $prev);
96
$li->unlink($li);
97
}
98
}
ilPageContent\setType
setType(string $a_type)
Set Type.
Definition:
class.ilPageContent.php:74
ilPCListItem\moveItemUp
moveItemUp()
move list item up
Definition:
class.ilPCListItem.php:90
ilPageContent\getNode
getNode()
Definition:
class.ilPageContent.php:94
ilPCListItem\newItemAfter
newItemAfter()
insert new list item after current one
Definition:
class.ilPCListItem.php:34
ilPageContent
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition:
class.ilPageContent.php:25
ilPCListItem\init
init()
Definition:
class.ilPCListItem.php:26
ilPCListItem\newItemBefore
newItemBefore()
insert new list item before current one
Definition:
class.ilPCListItem.php:50
ilPCListItem
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition:
class.ilPCListItem.php:24
ilPCListItem\moveItemDown
moveItemDown()
move list item down
Definition:
class.ilPCListItem.php:78
ilPCListItem\deleteItem
deleteItem()
delete row of cell
Definition:
class.ilPCListItem.php:61
Services
COPage
classes
class.ilPCListItem.php
Generated on Fri Apr 4 2025 22:02:14 for ILIAS by
1.8.13 (using
Doxyfile
)