ILIAS
trunk Revision v11.0_alpha-2638-g80c1d007f79
◀ ilDoc Overview
class.ilConditionTrigger.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
26
class
ilConditionTrigger
27
{
28
protected
int
$ref_id
;
29
protected
int
$obj_id
;
30
protected
string
$type
;
31
32
public
function
__construct
(
int
$ref_id,
int
$obj_id,
string
$obj_type)
33
{
34
$this->ref_id =
$ref_id
;
35
$this->obj_id =
$obj_id
;
36
$this->type = $obj_type;
37
}
38
39
public
function
getRefId
():
int
40
{
41
return
$this->ref_id
;
42
}
43
44
public
function
getObjId
():
int
45
{
46
return
$this->obj_id
;
47
}
48
49
public
function
getType
(): string
50
{
51
return
$this->type
;
52
}
53
}
ilConditionTrigger\$type
string $type
Definition:
class.ilConditionTrigger.php:30
ilConditionTrigger\getObjId
getObjId()
Definition:
class.ilConditionTrigger.php:44
ilConditionTrigger\getRefId
getRefId()
Definition:
class.ilConditionTrigger.php:39
ilConditionTrigger\$obj_id
int $obj_id
Definition:
class.ilConditionTrigger.php:29
ilConditionTrigger
Represents a condition trigger object.
Definition:
class.ilConditionTrigger.php:26
ilConditionTrigger\__construct
__construct(int $ref_id, int $obj_id, string $obj_type)
Definition:
class.ilConditionTrigger.php:32
ilConditionTrigger\getType
getType()
Definition:
class.ilConditionTrigger.php:49
ILIAS\Repository\int
int(string $key)
Definition:
trait.BaseGUIRequest.php:61
ilConditionTrigger\$ref_id
int $ref_id
Definition:
class.ilConditionTrigger.php:28
components
ILIAS
Conditions
classes
class.ilConditionTrigger.php
Generated on Sun Aug 31 2025 23:02:33 for ILIAS by
1.8.13 (using
Doxyfile
)