ILIAS
release_8 Revision v8.19-1-g4e8f2f9140c
◀ 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
ilNotificationLink.php
Go to the documentation of this file.
1
<?php
2
3
declare(strict_types=1);
4
21
namespace
ILIAS\Notifications\Model
;
22
23
use
ilNotification
;
24
use
ilObjUser
;
25
29
class
ilNotificationLink
30
{
34
private
$title
;
35
private
string
$url
;
36
37
public
function
__construct
(
$title
,
string
$url)
38
{
39
$this->title =
$title
;
40
$this->url =
$url
;
41
}
42
46
public
function
getTitle
()
47
{
48
return
$this->title
;
49
}
50
54
public
function
setTitle
(
$title
): void
55
{
56
$this->title =
$title
;
57
}
58
59
public
function
getUrl
(): string
60
{
61
return
$this->url
;
62
}
63
64
public
function
setUrl
(
string
$url): void
65
{
66
$this->url =
$url
;
67
}
68
}
ILIAS\Notifications\Model\ilNotificationLink\$title
$title
Definition:
ilNotificationLink.php:34
ILIAS\Notifications\Model\ilNotificationLink\$url
string $url
Definition:
ilNotificationLink.php:35
ILIAS\Notifications\Model\ilNotificationLink\getUrl
getUrl()
Definition:
ilNotificationLink.php:59
ILIAS\Notifications\Model
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition:
ilNotificationConfig.php:21
ilObjUser
ILIAS\Notifications\Model\ilNotificationLink\setTitle
setTitle($title)
Definition:
ilNotificationLink.php:54
ilNotification
ILIAS\Notifications\Model\ilNotificationLink
Definition:
ilNotificationLink.php:29
ILIAS\Notifications\Model\ilNotificationLink\__construct
__construct($title, string $url)
Definition:
ilNotificationLink.php:37
ILIAS\Notifications\Model\ilNotificationLink\setUrl
setUrl(string $url)
Definition:
ilNotificationLink.php:64
ILIAS\Notifications\Model\ilNotificationLink\getTitle
getTitle()
Definition:
ilNotificationLink.php:46
Services
Notifications
classes
Model
ilNotificationLink.php
Generated on Thu Apr 17 2025 22:02:27 for ILIAS by
1.8.13 (using
Doxyfile
)