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.ilTreeTrashItem.php
Go to the documentation of this file.
1
<?php
2
3
declare(strict_types=1);
4
5
/* Copyright (c) 1998-2009 ILIAS open source, Extended GPL, see docs/LICENSE */
6
11
class
ilTreeTrashItem
12
{
13
private
int
$deleted_by
= 0;
14
15
private
?
string
$deleted
= null;
16
17
private
string
$type
=
''
;
18
19
private
?
string
$description
=
''
;
20
21
private
string
$title
=
''
;
22
23
private
int
$ref_id
= 0;
24
25
private
int
$obj_id
= 0;
26
30
public
function
__construct
()
31
{
32
}
33
34
public
function
setObjId
(
int
$obj_id): void
35
{
36
$this->obj_id =
$obj_id
;
37
}
38
39
public
function
getObjId
():
int
40
{
41
return
$this->obj_id
;
42
}
43
44
public
function
setRefId
(
int
$ref_id): void
45
{
46
$this->ref_id =
$ref_id
;
47
}
48
49
public
function
getRefId
():
int
50
{
51
return
$this->ref_id
;
52
}
53
54
public
function
setTitle
(
string
$title): void
55
{
56
$this->title =
$title
;
57
}
58
59
public
function
getTitle
(): string
60
{
61
return
$this->title
;
62
}
63
64
public
function
setDescription
(?
string
$description): void
65
{
66
$this->description =
$description
;
67
}
68
69
public
function
getDescription
(): ?string
70
{
71
return
$this->description
;
72
}
73
74
public
function
setType
(
string
$type): void
75
{
76
$this->type =
$type
;
77
}
78
79
public
function
getType
(): string
80
{
81
return
$this->type
;
82
}
83
84
public
function
setDeleted
(?
string
$deleted): void
85
{
86
$this->deleted =
$deleted
;
87
}
88
89
public
function
getDeleted
(): ?string
90
{
91
return
$this->deleted
;
92
}
93
94
public
function
setDeletedBy
(
int
$deleted_by): void
95
{
96
$this->deleted_by =
$deleted_by
;
97
}
98
99
public
function
getDeletedBy
():
int
100
{
101
return
$this->deleted_by
;
102
}
103
}
ilTreeTrashItem\getDeletedBy
getDeletedBy()
Definition:
class.ilTreeTrashItem.php:99
ilTreeTrashItem\getRefId
getRefId()
Definition:
class.ilTreeTrashItem.php:49
ilTreeTrashItem\setRefId
setRefId(int $ref_id)
Definition:
class.ilTreeTrashItem.php:44
ilTreeTrashItem\getDescription
getDescription()
Definition:
class.ilTreeTrashItem.php:69
ilTreeTrashItem\setDeletedBy
setDeletedBy(int $deleted_by)
Definition:
class.ilTreeTrashItem.php:94
ilTreeTrashItem\$deleted_by
int $deleted_by
Definition:
class.ilTreeTrashItem.php:13
ilTreeTrashItem\getObjId
getObjId()
Definition:
class.ilTreeTrashItem.php:39
ilTreeTrashItem\$type
string $type
Definition:
class.ilTreeTrashItem.php:17
ilTreeTrashItem
Definition:
class.ilTreeTrashItem.php:11
ilTreeTrashItem\setType
setType(string $type)
Definition:
class.ilTreeTrashItem.php:74
ilTreeTrashItem\$deleted
string $deleted
Definition:
class.ilTreeTrashItem.php:15
ilTreeTrashItem\getType
getType()
Definition:
class.ilTreeTrashItem.php:79
ilTreeTrashItem\$obj_id
int $obj_id
Definition:
class.ilTreeTrashItem.php:25
ilTreeTrashItem\__construct
__construct()
ilTreeTrashItem constructor.
Definition:
class.ilTreeTrashItem.php:30
ilTreeTrashItem\getTitle
getTitle()
Definition:
class.ilTreeTrashItem.php:59
ilTreeTrashItem\$title
string $title
Definition:
class.ilTreeTrashItem.php:21
ilTreeTrashItem\$description
string $description
Definition:
class.ilTreeTrashItem.php:19
ilTreeTrashItem\setTitle
setTitle(string $title)
Definition:
class.ilTreeTrashItem.php:54
ilTreeTrashItem\setObjId
setObjId(int $obj_id)
Definition:
class.ilTreeTrashItem.php:34
ilTreeTrashItem\$ref_id
int $ref_id
Definition:
class.ilTreeTrashItem.php:23
ilTreeTrashItem\setDeleted
setDeleted(?string $deleted)
Definition:
class.ilTreeTrashItem.php:84
ilTreeTrashItem\setDescription
setDescription(?string $description)
Definition:
class.ilTreeTrashItem.php:64
ilTreeTrashItem\getDeleted
getDeleted()
Definition:
class.ilTreeTrashItem.php:89
ILIAS\Repository\int
int(string $key)
Definition:
trait.BaseGUIRequest.php:61
Services
Tree
classes
class.ilTreeTrashItem.php
Generated on Thu Apr 3 2025 22:02:37 for ILIAS by
1.8.13 (using
Doxyfile
)