ILIAS
release_5-4 Revision v5.4.26-12-gabc799a52e6
◀ ilDoc Overview
class.ilCertificateQueueEntry.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
ilCertificateQueueEntry
8
{
12
private
$objId
;
13
17
private
$userId
;
18
22
private
$adapterClass
;
23
27
private
$state
;
28
32
private
$startedTimestamp
;
33
37
private
$id
;
38
42
private
$templateId
;
43
53
public
function
__construct
(
54
int
$objId
,
55
int
$userId
,
56
string
$adapterClass
,
57
string
$state
,
58
int
$templateId
,
59
int
$startedTimestamp
= null,
60
int
$id
= null
61
) {
62
$this->objId =
$objId
;
63
$this->userId =
$userId
;
64
$this->adapterClass =
$adapterClass
;
65
$this->state =
$state
;
66
$this->templateId =
$templateId
;
67
$this->startedTimestamp =
$startedTimestamp
;
68
$this->
id
=
$id
;
69
}
70
74
public
function
getObjId
() : int
75
{
76
return
$this->objId
;
77
}
78
82
public
function
getUserId
() : int
83
{
84
return
$this->userId
;
85
}
86
90
public
function
getAdapterClass
() : string
91
{
92
return
$this->adapterClass
;
93
}
94
98
public
function
getState
() : string
99
{
100
return
$this->state
;
101
}
102
106
public
function
getStartedTimestamp
()
107
{
108
return
$this->startedTimestamp
;
109
}
110
114
public
function
getId
()
115
{
116
return
$this->id
;
117
}
118
122
public
function
getTemplateId
() : int
123
{
124
return
$this->templateId
;
125
}
126
}
ilCertificateQueueEntry
Definition:
class.ilCertificateQueueEntry.php:7
ilCertificateQueueEntry\__construct
__construct(int $objId, int $userId, string $adapterClass, string $state, int $templateId, int $startedTimestamp=null, int $id=null)
Definition:
class.ilCertificateQueueEntry.php:53
ilCertificateQueueEntry\$startedTimestamp
$startedTimestamp
Definition:
class.ilCertificateQueueEntry.php:32
ilCertificateQueueEntry\$id
$id
Definition:
class.ilCertificateQueueEntry.php:37
ilCertificateQueueEntry\$templateId
$templateId
Definition:
class.ilCertificateQueueEntry.php:42
ilCertificateQueueEntry\getAdapterClass
getAdapterClass()
Definition:
class.ilCertificateQueueEntry.php:90
ilCertificateQueueEntry\getStartedTimestamp
getStartedTimestamp()
Definition:
class.ilCertificateQueueEntry.php:106
ilCertificateQueueEntry\$state
$state
Definition:
class.ilCertificateQueueEntry.php:27
ilCertificateQueueEntry\$userId
$userId
Definition:
class.ilCertificateQueueEntry.php:17
ilCertificateQueueEntry\getState
getState()
Definition:
class.ilCertificateQueueEntry.php:98
ilCertificateQueueEntry\getObjId
getObjId()
Definition:
class.ilCertificateQueueEntry.php:74
ilCertificateQueueEntry\$objId
$objId
Definition:
class.ilCertificateQueueEntry.php:12
ilCertificateQueueEntry\getId
getId()
Definition:
class.ilCertificateQueueEntry.php:114
php
ilCertificateQueueEntry\getUserId
getUserId()
Definition:
class.ilCertificateQueueEntry.php:82
ilCertificateQueueEntry\getTemplateId
getTemplateId()
Definition:
class.ilCertificateQueueEntry.php:122
ilCertificateQueueEntry\$adapterClass
$adapterClass
Definition:
class.ilCertificateQueueEntry.php:22
Services
Certificate
classes
Queue
class.ilCertificateQueueEntry.php
Generated on Thu Jan 16 2025 19:02:18 for ILIAS by
1.8.13 (using
Doxyfile
)