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.ilForumPostsTree.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
25
class
ilForumPostsTree
26
{
27
private
readonly
ilDBInterface
$db
;
28
private
int
$pos_fk
= 0;
29
private
int
$parent_pos
= 0;
30
private
int
$lft
= 0;
31
private
int
$rgt
= 0;
32
private
int
$depth
= 0;
33
private
int
$source_thread_id
= 0;
34
private
int
$target_thread_id
= 0;
35
36
public
function
__construct
()
37
{
38
global
$DIC
;
39
$this->db = $DIC->database();
40
}
41
42
public
function
setDepth
(
int
$depth): void
43
{
44
$this->depth =
$depth
;
45
}
46
47
public
function
getDepth
():
int
48
{
49
return
$this->depth
;
50
}
51
52
public
function
setLft
(
int
$lft): void
53
{
54
$this->lft =
$lft
;
55
}
56
57
public
function
getLft
():
int
58
{
59
return
$this->lft
;
60
}
61
62
public
function
setParentPos
(
int
$parent_pos): void
63
{
64
$this->parent_pos =
$parent_pos
;
65
}
66
67
public
function
getParentPos
():
int
68
{
69
return
$this->parent_pos
;
70
}
71
72
public
function
setPosFk
(
int
$pos_fk): void
73
{
74
$this->pos_fk =
$pos_fk
;
75
}
76
77
public
function
getPosFk
():
int
78
{
79
return
$this->pos_fk
;
80
}
81
82
public
function
setRgt
(
int
$rgt): void
83
{
84
$this->rgt =
$rgt
;
85
}
86
87
public
function
getRgt
():
int
88
{
89
return
$this->rgt
;
90
}
91
92
public
function
setSourceThreadId
(
int
$source_thread_id): void
93
{
94
$this->source_thread_id =
$source_thread_id
;
95
}
96
97
public
function
getSourceThreadId
():
int
98
{
99
return
$this->source_thread_id
;
100
}
101
102
public
function
setTargetThreadId
(
int
$target_thread_id): void
103
{
104
$this->target_thread_id =
$target_thread_id
;
105
}
106
107
public
function
getTargetThreadId
():
int
108
{
109
return
$this->target_thread_id
;
110
}
111
112
public
function
merge
(): void
113
{
114
$this->db->update(
115
'frm_posts_tree'
,
116
[
117
'lft'
=> [
'integer'
, $this->
getLft
()],
118
'rgt'
=> [
'integer'
, $this->
getRgt
()],
119
'depth'
=> [
'integer'
, $this->
getDepth
()],
120
'thr_fk'
=> [
'integer'
, $this->
getTargetThreadId
()],
121
'parent_pos'
=> [
'integer'
, $this->
getParentPos
()],
122
],
123
[
124
'pos_fk'
=> [
'integer'
, $this->
getPosFk
()],
125
'thr_fk'
=> [
'integer'
, $this->
getSourceThreadId
()]
126
]
127
);
128
}
129
130
public
static
function
updateTargetRootRgt
(
int
$root_node_id,
int
$rgt): void
131
{
132
global
$DIC
;
133
134
$ilDB
= $DIC->database();
135
136
$ilDB
->update(
137
'frm_posts_tree'
,
138
[
139
'rgt'
=> [
'integer'
, $rgt]
140
],
141
[
142
'parent_pos'
=> [
'integer'
, 0],
143
'pos_fk'
=> [
'integer'
, $root_node_id]
144
]
145
);
146
}
147
}
ilForumPostsTree\getDepth
getDepth()
Definition:
class.ilForumPostsTree.php:47
ilForumPostsTree\$parent_pos
int $parent_pos
Definition:
class.ilForumPostsTree.php:29
ilForumPostsTree\setTargetThreadId
setTargetThreadId(int $target_thread_id)
Definition:
class.ilForumPostsTree.php:102
ilForumPostsTree\getRgt
getRgt()
Definition:
class.ilForumPostsTree.php:87
ilForumPostsTree\$target_thread_id
int $target_thread_id
Definition:
class.ilForumPostsTree.php:34
ilForumPostsTree\$depth
int $depth
Definition:
class.ilForumPostsTree.php:32
ilForumPostsTree\setSourceThreadId
setSourceThreadId(int $source_thread_id)
Definition:
class.ilForumPostsTree.php:92
ilForumPostsTree\$db
readonly ilDBInterface $db
Definition:
class.ilForumPostsTree.php:27
ilForumPostsTree\getPosFk
getPosFk()
Definition:
class.ilForumPostsTree.php:77
ilForumPostsTree\getSourceThreadId
getSourceThreadId()
Definition:
class.ilForumPostsTree.php:97
ilForumPostsTree\getLft
getLft()
Definition:
class.ilForumPostsTree.php:57
ilForumPostsTree\setPosFk
setPosFk(int $pos_fk)
Definition:
class.ilForumPostsTree.php:72
ilForumPostsTree\setParentPos
setParentPos(int $parent_pos)
Definition:
class.ilForumPostsTree.php:62
ilForumPostsTree\updateTargetRootRgt
static updateTargetRootRgt(int $root_node_id, int $rgt)
Definition:
class.ilForumPostsTree.php:130
$ilDB
$ilDB
Definition:
storeScorm2004.php:25
ilForumPostsTree\$rgt
int $rgt
Definition:
class.ilForumPostsTree.php:31
ilForumPostsTree\getTargetThreadId
getTargetThreadId()
Definition:
class.ilForumPostsTree.php:107
$DIC
global $DIC
Definition:
shib_login.php:22
ilDBInterface
ilForumPostsTree\getParentPos
getParentPos()
Definition:
class.ilForumPostsTree.php:67
ilForumPostsTree\setLft
setLft(int $lft)
Definition:
class.ilForumPostsTree.php:52
ilForumPostsTree\$pos_fk
int $pos_fk
Definition:
class.ilForumPostsTree.php:28
ilForumPostsTree\$source_thread_id
int $source_thread_id
Definition:
class.ilForumPostsTree.php:33
ilForumPostsTree\setRgt
setRgt(int $rgt)
Definition:
class.ilForumPostsTree.php:82
ilForumPostsTree\$lft
int $lft
Definition:
class.ilForumPostsTree.php:30
ilForumPostsTree\__construct
__construct()
Definition:
class.ilForumPostsTree.php:36
ilForumPostsTree\merge
merge()
Definition:
class.ilForumPostsTree.php:112
ilForumPostsTree
Definition:
class.ilForumPostsTree.php:25
ILIAS\Repository\int
int(string $key)
Definition:
trait.BaseGUIRequest.php:61
ilForumPostsTree\setDepth
setDepth(int $depth)
Definition:
class.ilForumPostsTree.php:42
components
ILIAS
Forum
classes
class.ilForumPostsTree.php
Generated on Wed Apr 2 2025 23:02:53 for ILIAS by
1.8.13 (using
Doxyfile
)