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.ilCertificateValueReplacement.php
Go to the documentation of this file.
1
<?php
2
/* Copyright (c) 1998-2018 ILIAS open source, Extended GPL, see docs/LICENSE */
3
7
class
ilCertificateValueReplacement
8
{
12
private
$clientWebDirectory
;
13
19
public
function
__construct
(
string
$clientWebDirectory
=
''
)
20
{
21
if
(
''
===
$clientWebDirectory
&&
true
=== defined(
'CLIENT_WEB_DIR'
)) {
22
$clientWebDirectory
= CLIENT_WEB_DIR;
23
}
24
$this->clientWebDirectory =
$clientWebDirectory
;
25
}
26
34
public
function
replace
(array $placeholderValues,
string
$certificateContent) : string
35
{
36
foreach
($placeholderValues as $placeholder => $value) {
37
$certificateContent = str_replace(
'['
. $placeholder .
']'
, $value, $certificateContent);
38
}
39
40
return
$certificateContent;
41
}
42
}
ilCertificateValueReplacement\__construct
__construct(string $clientWebDirectory='')
Definition:
class.ilCertificateValueReplacement.php:19
ilCertificateValueReplacement
Definition:
class.ilCertificateValueReplacement.php:7
ilCertificateValueReplacement\replace
replace(array $placeholderValues, string $certificateContent)
Replaces placeholder in the certificate content with actual values.
Definition:
class.ilCertificateValueReplacement.php:34
ilCertificateValueReplacement\$clientWebDirectory
$clientWebDirectory
Definition:
class.ilCertificateValueReplacement.php:12
Services
Certificate
classes
Placeholder
Replacement
class.ilCertificateValueReplacement.php
Generated on Sat Apr 5 2025 20:01:18 for ILIAS by
1.8.13 (using
Doxyfile
)