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.Note.php
Go to the documentation of this file.
1
<?php
2
3
declare(strict_types=1);
4
21
namespace
ILIAS\Notes
;
22
26
class
Note
27
{
28
public
const
PRIVATE
= 1;
29
public
const
PUBLIC
= 2;
30
31
protected
int
$id
= 0;
32
protected
?
string
$update_date
;
33
protected
?
string
$creation_date
;
34
protected
int
$author
= 0;
35
protected
int
$type
= 0;
36
protected
string
$text
=
""
;
37
protected
Context
$context
;
38
39
public
function
__construct
(
40
int
$id,
41
Context
$context,
42
string
$text,
43
int
$author,
44
int
$type = self::PRIVATE,
45
?
string
$creation_date = null,
46
?
string
$update_date = null
47
) {
48
$this->
id
=
$id
;
49
$this->context =
$context
;
50
$this->text =
$text
;
51
$this->author =
$author
;
52
$this->type =
$type
;
53
$this->update_date =
$update_date
;
54
$this->creation_date =
$creation_date
;
55
}
56
57
public
function
withCreationDate
(
string
$creation_date): self
58
{
59
$note = clone $this;
60
$note->creation_date =
$creation_date
;
61
return
$note;
62
}
63
64
public
function
getId
():
int
65
{
66
return
$this->id
;
67
}
68
69
public
function
getContext
():
Context
70
{
71
return
$this->context
;
72
}
73
74
public
function
getText
(): string
75
{
76
return
$this->text
;
77
}
78
79
public
function
getAuthor
():
int
80
{
81
return
$this->author
;
82
}
83
84
public
function
getType
():
int
85
{
86
return
$this->type
;
87
}
88
89
public
function
getCreationDate
(): ?string
90
{
91
return
$this->creation_date
;
92
}
93
94
public
function
getUpdateDate
(): ?string
95
{
96
return
$this->update_date
;
97
}
98
}
ILIAS\Notes\Note\getUpdateDate
getUpdateDate()
Definition:
class.Note.php:94
ILIAS\Notes\Note\getId
getId()
Definition:
class.Note.php:64
ILIAS\Notes\Note\$type
int $type
Definition:
class.Note.php:35
ILIAS\Notes\Note\getText
getText()
Definition:
class.Note.php:74
ILIAS\Notes\Note\$context
Context $context
Definition:
class.Note.php:37
ILIAS\Notes\Note\getContext
getContext()
Definition:
class.Note.php:69
ILIAS\Notes\Note\$creation_date
string $creation_date
Definition:
class.Note.php:33
ILIAS\Notes
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition:
class.Context.php:21
ILIAS\Notes\Note\$id
int $id
Definition:
class.Note.php:31
ILIAS\Notes\Note\$author
int $author
Definition:
class.Note.php:34
ILIAS\Notes\Note
Definition:
class.Note.php:26
ILIAS\Notes\Note\getAuthor
getAuthor()
Definition:
class.Note.php:79
ILIAS\Notes\Note\$update_date
string $update_date
Definition:
class.Note.php:32
ILIAS\Notes\Note\__construct
__construct(int $id, Context $context, string $text, int $author, int $type=self::PRIVATE, ?string $creation_date=null, ?string $update_date=null)
Definition:
class.Note.php:39
ILIAS\Notes\Note\getType
getType()
Definition:
class.Note.php:84
ILIAS\Notes\Note\withCreationDate
withCreationDate(string $creation_date)
Definition:
class.Note.php:57
ILIAS\Notes\Note\$text
string $text
Definition:
class.Note.php:36
ILIAS\Notes\Note\PRIVATE
const PRIVATE
Definition:
class.Note.php:28
ILIAS\Notes\Context
Definition:
class.Context.php:27
ILIAS\Repository\int
int(string $key)
Definition:
trait.BaseGUIRequest.php:61
ILIAS\Notes\Note\getCreationDate
getCreationDate()
Definition:
class.Note.php:89
ILIAS\Notes\Note\PUBLIC
const PUBLIC
Definition:
class.Note.php:29
Services
Notes
Note
class.Note.php
Generated on Thu Apr 3 2025 22:02:28 for ILIAS by
1.8.13 (using
Doxyfile
)