ILIAS
trunk Revision v11.0_alpha-1723-g8e69f309bab
◀ 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.ilTreeTrashItem.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
25
class
ilTreeTrashItem
26
{
27
private
int
$deleted_by
= 0;
28
29
private
?
string
$deleted
=
null
;
30
31
private
string
$type
=
''
;
32
33
private
?
string
$description
=
''
;
34
35
private
string
$title
=
''
;
36
37
private
int
$ref_id
= 0;
38
39
private
int
$obj_id
= 0;
40
44
public
function
__construct
()
45
{
46
}
47
48
public
function
setObjId
(
int
$obj_id): void
49
{
50
$this->obj_id =
$obj_id
;
51
}
52
53
public
function
getObjId
():
int
54
{
55
return
$this->obj_id
;
56
}
57
58
public
function
setRefId
(
int
$ref_id): void
59
{
60
$this->ref_id =
$ref_id
;
61
}
62
63
public
function
getRefId
():
int
64
{
65
return
$this->ref_id
;
66
}
67
68
public
function
setTitle
(
string
$title): void
69
{
70
$this->title =
$title
;
71
}
72
73
public
function
getTitle
(): string
74
{
75
return
$this->title
;
76
}
77
78
public
function
setDescription
(?
string
$description): void
79
{
80
$this->description =
$description
;
81
}
82
83
public
function
getDescription
(): ?string
84
{
85
return
$this->description
;
86
}
87
88
public
function
setType
(
string
$type): void
89
{
90
$this->type =
$type
;
91
}
92
93
public
function
getType
(): string
94
{
95
return
$this->type
;
96
}
97
98
public
function
setDeleted
(?
string
$deleted): void
99
{
100
$this->deleted =
$deleted
;
101
}
102
103
public
function
getDeleted
(): ?string
104
{
105
return
$this->deleted
;
106
}
107
108
public
function
setDeletedBy
(
int
$deleted_by): void
109
{
110
$this->deleted_by =
$deleted_by
;
111
}
112
113
public
function
getDeletedBy
():
int
114
{
115
return
$this->deleted_by
;
116
}
117
}
ilTreeTrashItem\getDeletedBy
getDeletedBy()
Definition:
class.ilTreeTrashItem.php:113
ilTreeTrashItem\getRefId
getRefId()
Definition:
class.ilTreeTrashItem.php:63
ilTreeTrashItem\setRefId
setRefId(int $ref_id)
Definition:
class.ilTreeTrashItem.php:58
ilTreeTrashItem\getDescription
getDescription()
Definition:
class.ilTreeTrashItem.php:83
ilTreeTrashItem\setDeletedBy
setDeletedBy(int $deleted_by)
Definition:
class.ilTreeTrashItem.php:108
ilTreeTrashItem\$deleted_by
int $deleted_by
Definition:
class.ilTreeTrashItem.php:27
ilTreeTrashItem\getObjId
getObjId()
Definition:
class.ilTreeTrashItem.php:53
ilTreeTrashItem\$type
string $type
Definition:
class.ilTreeTrashItem.php:31
ilTreeTrashItem
Definition:
class.ilTreeTrashItem.php:25
ilTreeTrashItem\setType
setType(string $type)
Definition:
class.ilTreeTrashItem.php:88
ilTreeTrashItem\$deleted
string $deleted
Definition:
class.ilTreeTrashItem.php:29
ilTreeTrashItem\getType
getType()
Definition:
class.ilTreeTrashItem.php:93
null
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
Definition:
shib_logout.php:142
ilTreeTrashItem\$obj_id
int $obj_id
Definition:
class.ilTreeTrashItem.php:39
ilTreeTrashItem\__construct
__construct()
ilTreeTrashItem constructor.
Definition:
class.ilTreeTrashItem.php:44
ilTreeTrashItem\getTitle
getTitle()
Definition:
class.ilTreeTrashItem.php:73
ilTreeTrashItem\$title
string $title
Definition:
class.ilTreeTrashItem.php:35
ilTreeTrashItem\$description
string $description
Definition:
class.ilTreeTrashItem.php:33
ilTreeTrashItem\setTitle
setTitle(string $title)
Definition:
class.ilTreeTrashItem.php:68
ilTreeTrashItem\setObjId
setObjId(int $obj_id)
Definition:
class.ilTreeTrashItem.php:48
ilTreeTrashItem\$ref_id
int $ref_id
Definition:
class.ilTreeTrashItem.php:37
ilTreeTrashItem\setDeleted
setDeleted(?string $deleted)
Definition:
class.ilTreeTrashItem.php:98
ilTreeTrashItem\setDescription
setDescription(?string $description)
Definition:
class.ilTreeTrashItem.php:78
ilTreeTrashItem\getDeleted
getDeleted()
Definition:
class.ilTreeTrashItem.php:103
ILIAS\Repository\int
int(string $key)
Definition:
trait.BaseGUIRequest.php:61
components
ILIAS
Tree
classes
class.ilTreeTrashItem.php
Generated on Sun Apr 6 2025 23:04:29 for ILIAS by
1.8.13 (using
Doxyfile
)