ILIAS
trunk Revision v12.0_alpha-377-g3641b37b9db
◀ ilDoc Overview
RecordInfos.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
21
namespace
ILIAS\MetaData\OERHarvester\ExposedRecords
;
22
23
class
RecordInfos
implements
RecordInfosInterface
24
{
25
protected
int
$obj_id
;
26
protected
string
$identifier
;
27
protected \DateTimeImmutable
$datestamp
;
28
protected
bool
$is_deleted
;
29
30
public
function
__construct
(
31
int
$obj_id
,
32
string
$identifier
,
33
\DateTimeImmutable
$datestamp
,
34
bool
$is_deleted
35
) {
36
$this->obj_id =
$obj_id
;
37
$this->identifier =
$identifier
;
38
$this->
datestamp
=
$datestamp
;
39
$this->is_deleted =
$is_deleted
;
40
}
41
42
public
function
objID
():
int
43
{
44
return
$this->obj_id
;
45
}
46
47
public
function
identfifier
(): string
48
{
49
return
$this->identifier
;
50
}
51
52
public
function
datestamp
(): \DateTimeImmutable
53
{
54
return
$this->datestamp
;
55
}
56
57
public
function
isDeleted
(): bool
58
{
59
return
$this->is_deleted
;
60
}
61
}
ILIAS\MetaData\OERHarvester\ExposedRecords\RecordInfos
Definition:
RecordInfos.php:24
ILIAS\MetaData\OERHarvester\ExposedRecords\RecordInfos\$is_deleted
bool $is_deleted
Definition:
RecordInfos.php:28
ILIAS\MetaData\OERHarvester\ExposedRecords\RecordInfos\$identifier
string $identifier
Definition:
RecordInfos.php:26
ILIAS\MetaData\OERHarvester\ExposedRecords\RecordInfos\$datestamp
DateTimeImmutable $datestamp
Definition:
RecordInfos.php:27
ILIAS\MetaData\OERHarvester\ExposedRecords\RecordInfos\isDeleted
isDeleted()
Definition:
RecordInfos.php:57
ILIAS\MetaData\OERHarvester\ExposedRecords\RecordInfos\$obj_id
int $obj_id
Definition:
RecordInfos.php:25
ILIAS\MetaData\OERHarvester\ExposedRecords\RecordInfos\objID
objID()
Definition:
RecordInfos.php:42
ILIAS\MetaData\OERHarvester\ExposedRecords\RecordInfos\__construct
__construct(int $obj_id, string $identifier, \DateTimeImmutable $datestamp, bool $is_deleted)
Definition:
RecordInfos.php:30
ILIAS\MetaData\OERHarvester\ExposedRecords\RecordInfos\datestamp
datestamp()
Definition:
RecordInfos.php:52
ILIAS\MetaData\OERHarvester\ExposedRecords\RecordInfos\identfifier
identfifier()
Definition:
RecordInfos.php:47
ILIAS\MetaData\OERHarvester\ExposedRecords\RecordInfosInterface
Definition:
RecordInfosInterface.php:24
ILIAS\MetaData\OERHarvester\ExposedRecords
Definition:
DatabaseRepository.php:21
ILIAS\Repository\int
int(string $key)
Definition:
trait.BaseGUIRequest.php:61
components
ILIAS
MetaData
classes
OERHarvester
ExposedRecords
RecordInfos.php
Generated on Sat Dec 13 2025 23:02:43 for ILIAS by
1.9.4 (using
Doxyfile
)