ILIAS
trunk Revision v11.0_alpha-1689-g66c127b4ae8
◀ ilDoc Overview
Main Page
Related Pages
Modules
+
Namespaces
Namespace List
+
Namespace Members
+
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
k
l
m
n
o
p
r
s
t
u
v
w
x
+
Variables
$
c
e
g
h
j
l
m
p
s
t
u
v
+
Enumerations
a
c
e
f
i
j
l
m
n
o
p
r
s
t
u
v
z
+
Enumerator
a
c
d
e
f
g
i
l
m
n
o
p
q
s
t
u
v
y
+
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
Ö
Enumerations
Enumerator
+
Files
File List
+
Globals
+
All
$
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
z
+
Functions
a
b
c
d
e
f
g
h
i
m
n
p
r
s
t
u
v
+
Variables
$
a
c
e
g
h
i
m
n
o
p
r
s
t
u
v
z
Enumerations
Enumerator
Examples
•
All
Data Structures
Namespaces
Files
Functions
Variables
Enumerations
Enumerator
Modules
Pages
class.ilMailTemplateContextAdapter.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
30
class
ilMailTemplateContextAdapter
31
{
32
public
function
__construct
(
34
protected
array $contexts,
35
protected
array $context_parameter,
36
protected
?
ilObjUser
$recipient =
null
37
) {
38
}
39
40
public
function
withContext
(
ilMailTemplateContext
$context
): self
41
{
42
$clone = clone $this;
43
$clone->contexts[] =
$context
;
44
return
$clone;
45
}
46
47
public
function
__isset
(
string
$name): bool
48
{
49
foreach
($this->contexts as
$context
) {
50
$possible_placeholder =
array_map
(
51
static
function
($placeholder):
string
{
52
return
strtoupper($placeholder);
53
},
54
array_keys($context->getPlaceholders())
55
);
56
if
(in_array($name, $possible_placeholder,
true
)) {
57
return
true
;
58
}
59
}
60
61
return
false
;
62
}
63
64
public
function
__get
(
string
$name): string
65
{
66
foreach
($this->contexts as
$context
) {
67
$ret = $context->resolvePlaceholder($name, $this->context_parameter, $this->recipient);
68
if
($ret !==
''
) {
69
return
$ret;
70
}
71
}
72
73
return
''
;
74
}
75
}
$context
$context
Definition:
webdav.php:31
array_map
null
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
Definition:
shib_logout.php:142
ilObjUser
ilMailTemplateContextAdapter
This class forms an interface between the existing ILIAS mail contexts and the requirements of Mustac...
Definition:
class.ilMailTemplateContextAdapter.php:30
ilMailTemplateContext
Definition:
class.ilMailTemplateContext.php:24
ilMailTemplateContextAdapter\withContext
withContext(ilMailTemplateContext $context)
Definition:
class.ilMailTemplateContextAdapter.php:40
ilMailTemplateContextAdapter\__isset
__isset(string $name)
Definition:
class.ilMailTemplateContextAdapter.php:47
ILIAS\GlobalScreen\Provider\__construct
__construct(Container $dic, ilPlugin $plugin)
Definition:
PluginProviderHelper.php:37
ilMailTemplateContextAdapter\__get
__get(string $name)
Definition:
class.ilMailTemplateContextAdapter.php:64
components
ILIAS
Mail
classes
Mustache
class.ilMailTemplateContextAdapter.php
Generated on Wed Apr 2 2025 23:03:11 for ILIAS by
1.8.13 (using
Doxyfile
)