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.ilTermsOfServiceAcceptanceEntity.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
25
class
ilTermsOfServiceAcceptanceEntity
26
{
27
protected
int
$id
= 0;
28
protected
int
$user_id
= 0;
29
protected
string
$text
=
''
;
30
protected
int
$timestamp
= 0;
31
protected
string
$hash
=
''
;
32
protected
string
$title
=
''
;
33
protected
int
$document_id
= 0;
34
protected
string
$criteria
=
''
;
35
36
public
function
getHash
(): string
37
{
38
return
$this->hash
;
39
}
40
41
public
function
withHash
(
string
$hash): self
42
{
43
$clone = clone $this;
44
45
$clone->hash =
$hash
;
46
47
return
$clone;
48
}
49
50
public
function
getText
(): string
51
{
52
return
$this->text
;
53
}
54
55
public
function
withText
(
string
$text): self
56
{
57
$clone = clone $this;
58
59
$clone->text =
$text
;
60
61
return
$clone;
62
}
63
64
public
function
getTimestamp
():
int
65
{
66
return
$this->timestamp
;
67
}
68
69
public
function
withTimestamp
(
int
$timestamp): self
70
{
71
$clone = clone $this;
72
73
$clone->timestamp =
$timestamp
;
74
75
return
$clone;
76
}
77
78
public
function
getUserId
():
int
79
{
80
return
$this->user_id
;
81
}
82
83
public
function
withUserId
(
int
$user_id): self
84
{
85
$clone = clone $this;
86
87
$clone->user_id =
$user_id
;
88
89
return
$clone;
90
}
91
92
public
function
getId
():
int
93
{
94
return
$this->id
;
95
}
96
97
public
function
withId
(
int
$id): self
98
{
99
$clone = clone $this;
100
101
$clone->id =
$id
;
102
103
return
$clone;
104
}
105
106
public
function
getTitle
(): string
107
{
108
return
$this->title
;
109
}
110
111
public
function
withTitle
(
string
$title): self
112
{
113
$clone = clone $this;
114
115
$clone->title =
$title
;
116
117
return
$clone;
118
}
119
120
public
function
getDocumentId
():
int
121
{
122
return
$this->document_id
;
123
}
124
125
public
function
withDocumentId
(
int
$document_id): self
126
{
127
$clone = clone $this;
128
129
$clone->document_id =
$document_id
;
130
131
return
$clone;
132
}
133
134
public
function
getSerializedCriteria
(): string
135
{
136
return
$this->criteria
;
137
}
138
139
public
function
withSerializedCriteria
(
string
$criteria): self
140
{
141
$clone = clone $this;
142
143
$clone->criteria =
$criteria
;
144
145
return
$clone;
146
}
147
}
ilTermsOfServiceAcceptanceEntity\getDocumentId
getDocumentId()
Definition:
class.ilTermsOfServiceAcceptanceEntity.php:120
ilTermsOfServiceAcceptanceEntity\$hash
string $hash
Definition:
class.ilTermsOfServiceAcceptanceEntity.php:31
ilTermsOfServiceAcceptanceEntity\$document_id
int $document_id
Definition:
class.ilTermsOfServiceAcceptanceEntity.php:33
ilTermsOfServiceAcceptanceEntity\getId
getId()
Definition:
class.ilTermsOfServiceAcceptanceEntity.php:92
ilTermsOfServiceAcceptanceEntity\getTimestamp
getTimestamp()
Definition:
class.ilTermsOfServiceAcceptanceEntity.php:64
ilTermsOfServiceAcceptanceEntity\$user_id
int $user_id
Definition:
class.ilTermsOfServiceAcceptanceEntity.php:28
ilTermsOfServiceAcceptanceEntity\getText
getText()
Definition:
class.ilTermsOfServiceAcceptanceEntity.php:50
ilTermsOfServiceAcceptanceEntity\withSerializedCriteria
withSerializedCriteria(string $criteria)
Definition:
class.ilTermsOfServiceAcceptanceEntity.php:139
ilTermsOfServiceAcceptanceEntity\$text
string $text
Definition:
class.ilTermsOfServiceAcceptanceEntity.php:29
ilTermsOfServiceAcceptanceEntity\withTimestamp
withTimestamp(int $timestamp)
Definition:
class.ilTermsOfServiceAcceptanceEntity.php:69
ilTermsOfServiceAcceptanceEntity\getUserId
getUserId()
Definition:
class.ilTermsOfServiceAcceptanceEntity.php:78
ilTermsOfServiceAcceptanceEntity\withDocumentId
withDocumentId(int $document_id)
Definition:
class.ilTermsOfServiceAcceptanceEntity.php:125
ilTermsOfServiceAcceptanceEntity\$title
string $title
Definition:
class.ilTermsOfServiceAcceptanceEntity.php:32
ilTermsOfServiceAcceptanceEntity\withHash
withHash(string $hash)
Definition:
class.ilTermsOfServiceAcceptanceEntity.php:41
ilTermsOfServiceAcceptanceEntity\$timestamp
int $timestamp
Definition:
class.ilTermsOfServiceAcceptanceEntity.php:30
ilTermsOfServiceAcceptanceEntity\getTitle
getTitle()
Definition:
class.ilTermsOfServiceAcceptanceEntity.php:106
ilTermsOfServiceAcceptanceEntity\withTitle
withTitle(string $title)
Definition:
class.ilTermsOfServiceAcceptanceEntity.php:111
ilTermsOfServiceAcceptanceEntity\getSerializedCriteria
getSerializedCriteria()
Definition:
class.ilTermsOfServiceAcceptanceEntity.php:134
ilTermsOfServiceAcceptanceEntity
Class ilTermsOfServiceAcceptanceEntity.
Definition:
class.ilTermsOfServiceAcceptanceEntity.php:25
ilTermsOfServiceAcceptanceEntity\withUserId
withUserId(int $user_id)
Definition:
class.ilTermsOfServiceAcceptanceEntity.php:83
ilTermsOfServiceAcceptanceEntity\$id
int $id
Definition:
class.ilTermsOfServiceAcceptanceEntity.php:27
ilTermsOfServiceAcceptanceEntity\getHash
getHash()
Definition:
class.ilTermsOfServiceAcceptanceEntity.php:36
ilTermsOfServiceAcceptanceEntity\withId
withId(int $id)
Definition:
class.ilTermsOfServiceAcceptanceEntity.php:97
ilTermsOfServiceAcceptanceEntity\withText
withText(string $text)
Definition:
class.ilTermsOfServiceAcceptanceEntity.php:55
ilTermsOfServiceAcceptanceEntity\$criteria
string $criteria
Definition:
class.ilTermsOfServiceAcceptanceEntity.php:34
ILIAS\Repository\int
int(string $key)
Definition:
trait.BaseGUIRequest.php:61
Services
TermsOfService
classes
History
class.ilTermsOfServiceAcceptanceEntity.php
Generated on Fri Apr 4 2025 22:03:02 for ILIAS by
1.8.13 (using
Doxyfile
)