ILIAS
trunk Revision v11.0_alpha-2638-g80c1d007f79
◀ ilDoc Overview
SubObjectID.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
21
namespace
ILIAS\AdvancedMetaData\Services
;
22
23
class
SubObjectID
implements
SubObjectIDInterface
24
{
25
protected
int
$obj_id
;
26
protected
int
$sub_id
;
27
protected
string
$sub_type
;
28
29
public
function
__construct
(
30
int
$obj_id,
31
int
$sub_id,
32
string
$sub_type
33
) {
34
$this->obj_id =
$obj_id
;
35
$this->sub_id =
$sub_id
;
36
$this->sub_type =
$sub_type
;
37
}
38
39
public
function
subtype
(): string
40
{
41
return
$this->sub_type
;
42
}
43
44
public
function
objID
():
int
45
{
46
return
$this->obj_id
;
47
}
48
49
public
function
subID
():
int
50
{
51
return
$this->sub_id
;
52
}
53
}
ILIAS\Cache\Services\SubObjectID\objID
objID()
Definition:
SubObjectID.php:44
ILIAS\Cache\Services\SubObjectID\__construct
__construct(int $obj_id, int $sub_id, string $sub_type)
Definition:
SubObjectID.php:29
ILIAS\Cache\Services\SubObjectID
Definition:
SubObjectID.php:23
ILIAS\Cache\Services\SubObjectID\subtype
subtype()
Definition:
SubObjectID.php:39
ILIAS\Cache\Services\SubObjectID\subID
subID()
Definition:
SubObjectID.php:49
ILIAS\Cache\Services\SubObjectID\$sub_type
string $sub_type
Definition:
SubObjectID.php:27
ILIAS\AdvancedMetaData\Services
Definition:
Constants.php:21
ILIAS\Cache\Services\SubObjectIDInterface
Definition:
SubObjectIDInterface.php:23
ILIAS\Cache\Services\SubObjectID\$sub_id
int $sub_id
Definition:
SubObjectID.php:26
ILIAS\Cache\Services\SubObjectID\$obj_id
int $obj_id
Definition:
SubObjectID.php:25
ILIAS\Repository\int
int(string $key)
Definition:
trait.BaseGUIRequest.php:61
components
ILIAS
AdvancedMetaData
classes
Services
SubObjectID.php
Generated on Sun Aug 31 2025 23:02:06 for ILIAS by
1.8.13 (using
Doxyfile
)