ILIAS
release_5-4 Revision v5.4.26-12-gabc799a52e6
◀ ilDoc Overview
class.ilCertificateTemplate.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
ilCertificateTemplate
8
{
12
private
$obj_id
;
13
17
private
$certificateContent
;
18
22
private
$certificateHash
;
23
27
private
$templateValues
;
28
32
private
$version
;
33
37
private
$iliasVersion
;
38
42
private
$createdTimestamp
;
43
47
private
$currentlyActive
;
48
52
private
$id
;
53
57
private
$backgroundImagePath
;
58
62
private
$obj_type
;
63
67
private
$deleted
;
68
72
private
$thumbnailImagePath
;
73
89
public
function
__construct
(
90
$obj_id
,
91
$obj_type
,
92
$certificateContent
,
93
$certificateHash
,
94
$templateValues
,
95
$version
,
96
$iliasVersion
,
97
$createdTimestamp
,
98
$currentlyActive
,
99
$backgroundImagePath
=
''
,
100
$thumbnailImagePath
=
''
,
101
$id
= null,
102
bool
$deleted
=
false
103
) {
104
$this->obj_id =
$obj_id
;
105
$this->obj_type =
$obj_type
;
106
$this->certificateContent =
$certificateContent
;
107
$this->certificateHash =
$certificateHash
;
108
$this->templateValues =
$templateValues
;
109
$this->version =
$version
;
110
$this->iliasVersion =
$iliasVersion
;
111
$this->createdTimestamp =
$createdTimestamp
;
112
$this->currentlyActive =
$currentlyActive
;
113
$this->backgroundImagePath = (string)
$backgroundImagePath
;
114
$this->thumbnailImagePath = (string)
$thumbnailImagePath
;
115
$this->
id
=
$id
;
116
$this->deleted =
$deleted
;
117
}
118
122
public
function
getObjId
() : int
123
{
124
return
$this->obj_id
;
125
}
126
130
public
function
getCertificateContent
() : string
131
{
132
return
$this->certificateContent
;
133
}
134
138
public
function
getCertificateHash
() : string
139
{
140
return
$this->certificateHash
;
141
}
142
146
public
function
getTemplateValues
() : string
147
{
148
return
$this->templateValues
;
149
}
150
154
public
function
getVersion
() : string
155
{
156
return
$this->version
;
157
}
158
162
public
function
getIliasVersion
() : string
163
{
164
return
$this->iliasVersion
;
165
}
166
170
public
function
getCreatedTimestamp
() : int
171
{
172
return
$this->createdTimestamp
;
173
}
174
178
public
function
isCurrentlyActive
() : bool
179
{
180
return
$this->currentlyActive
;
181
}
182
186
public
function
getId
()
187
{
188
return
$this->id
;
189
}
190
194
public
function
getBackgroundImagePath
() : string
195
{
196
return
(
string
)
$this->backgroundImagePath
;
197
}
198
202
public
function
getObjType
() : string
203
{
204
return
$this->obj_type
;
205
}
206
210
public
function
isDeleted
() : bool
211
{
212
return
$this->deleted
;
213
}
214
218
public
function
getThumbnailImagePath
() : string
219
{
220
return
(
string
)
$this->thumbnailImagePath
;
221
}
222
}
ilCertificateTemplate\getId
getId()
Definition:
class.ilCertificateTemplate.php:186
ilCertificateTemplate\getThumbnailImagePath
getThumbnailImagePath()
Definition:
class.ilCertificateTemplate.php:218
ilCertificateTemplate\getCreatedTimestamp
getCreatedTimestamp()
Definition:
class.ilCertificateTemplate.php:170
ilCertificateTemplate\$version
$version
Definition:
class.ilCertificateTemplate.php:32
ilCertificateTemplate\$certificateContent
$certificateContent
Definition:
class.ilCertificateTemplate.php:17
ilCertificateTemplate\getTemplateValues
getTemplateValues()
Definition:
class.ilCertificateTemplate.php:146
ilCertificateTemplate\$obj_id
$obj_id
Definition:
class.ilCertificateTemplate.php:12
ilCertificateTemplate\getVersion
getVersion()
Definition:
class.ilCertificateTemplate.php:154
ilCertificateTemplate\$id
$id
Definition:
class.ilCertificateTemplate.php:52
ilCertificateTemplate\getIliasVersion
getIliasVersion()
Definition:
class.ilCertificateTemplate.php:162
ilCertificateTemplate\getBackgroundImagePath
getBackgroundImagePath()
Definition:
class.ilCertificateTemplate.php:194
ilCertificateTemplate\$backgroundImagePath
$backgroundImagePath
Definition:
class.ilCertificateTemplate.php:57
ilCertificateTemplate\getCertificateHash
getCertificateHash()
Definition:
class.ilCertificateTemplate.php:138
ilCertificateTemplate\getObjType
getObjType()
Definition:
class.ilCertificateTemplate.php:202
ilCertificateTemplate\getObjId
getObjId()
Definition:
class.ilCertificateTemplate.php:122
ilCertificateTemplate\$deleted
$deleted
Definition:
class.ilCertificateTemplate.php:67
ilCertificateTemplate\$templateValues
$templateValues
Definition:
class.ilCertificateTemplate.php:27
ilCertificateTemplate
Definition:
class.ilCertificateTemplate.php:7
ilCertificateTemplate\$createdTimestamp
$createdTimestamp
Definition:
class.ilCertificateTemplate.php:42
ilCertificateTemplate\$iliasVersion
$iliasVersion
Definition:
class.ilCertificateTemplate.php:37
ilCertificateTemplate\$certificateHash
$certificateHash
Definition:
class.ilCertificateTemplate.php:22
ilCertificateTemplate\isCurrentlyActive
isCurrentlyActive()
Definition:
class.ilCertificateTemplate.php:178
ilCertificateTemplate\__construct
__construct( $obj_id, $obj_type, $certificateContent, $certificateHash, $templateValues, $version, $iliasVersion, $createdTimestamp, $currentlyActive, $backgroundImagePath='', $thumbnailImagePath='', $id=null, bool $deleted=false)
Definition:
class.ilCertificateTemplate.php:89
ilCertificateTemplate\$currentlyActive
$currentlyActive
Definition:
class.ilCertificateTemplate.php:47
php
ilCertificateTemplate\getCertificateContent
getCertificateContent()
Definition:
class.ilCertificateTemplate.php:130
ilCertificateTemplate\isDeleted
isDeleted()
Definition:
class.ilCertificateTemplate.php:210
ilCertificateTemplate\$thumbnailImagePath
$thumbnailImagePath
Definition:
class.ilCertificateTemplate.php:72
ilCertificateTemplate\$obj_type
$obj_type
Definition:
class.ilCertificateTemplate.php:62
Services
Certificate
classes
Template
class.ilCertificateTemplate.php
Generated on Thu Jan 16 2025 19:02:18 for ILIAS by
1.8.13 (using
Doxyfile
)