ILIAS
release_6 Revision v6.24-5-g0c8bfefb3b8
◀ 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
p
s
t
w
+
Functions
_
a
b
c
f
g
h
i
s
t
w
+
Variables
$
c
d
e
f
g
h
j
l
m
p
s
t
+
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
q
r
s
t
u
v
w
x
z
+
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
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Examples
•
All
Data Structures
Namespaces
Files
Functions
Variables
Modules
Pages
class.ilMailAddress.php
Go to the documentation of this file.
1
<?php declare(strict_types=1);
2
/* Copyright (c) 1998-2016 ILIAS open source, Extended GPL, see docs/LICENSE */
3
8
class
ilMailAddress
9
{
11
protected
$mailbox
=
''
;
12
14
protected
$host
=
''
;
15
21
public
function
__construct
(
string
$mailbox
,
string
$host
)
22
{
23
$this->mailbox =
$mailbox
;
24
$this->host =
$host
;
25
}
26
30
public
function
setHost
(
string
$host
)
31
{
32
$this->host =
$host
;
33
}
34
38
public
function
setMailbox
(
string
$mailbox
)
39
{
40
$this->mailbox =
$mailbox
;
41
}
42
46
public
function
getHost
() : string
47
{
48
return
$this->host
;
49
}
50
54
public
function
getMailbox
() : string
55
{
56
return
$this->mailbox
;
57
}
58
62
public
function
__toString
() : string
63
{
64
return
implode(
'@'
, [
65
$this->
getMailbox
(),
66
$this->
getHost
(),
67
]);
68
}
69
}
ilMailAddress\$mailbox
$mailbox
Definition:
class.ilMailAddress.php:11
ilMailAddress\__construct
__construct(string $mailbox, string $host)
ilMailAddress constructor.
Definition:
class.ilMailAddress.php:21
ilMailAddress\getMailbox
getMailbox()
Definition:
class.ilMailAddress.php:54
ilMailAddress\setMailbox
setMailbox(string $mailbox)
Definition:
class.ilMailAddress.php:38
ilMailAddress\__toString
__toString()
Definition:
class.ilMailAddress.php:62
ilMailAddress\$host
$host
Definition:
class.ilMailAddress.php:14
ilMailAddress\getHost
getHost()
Definition:
class.ilMailAddress.php:46
ilMailAddress\setHost
setHost(string $host)
Definition:
class.ilMailAddress.php:30
ilMailAddress
Class ilMailAddress.
Definition:
class.ilMailAddress.php:8
Services
Mail
classes
Address
class.ilMailAddress.php
Generated on Thu Apr 3 2025 20:01:08 for ILIAS by
1.8.13 (using
Doxyfile
)