ILIAS
trunk Revision v12.0_alpha-16-g3e876e53c80
◀ ilDoc Overview
Step.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
21
namespace
ILIAS\Help\GuidedTour\Step
;
22
23
class
Step
24
{
25
public
function
__construct
(
26
protected
int
$id
,
27
protected
int
$tour_id,
28
protected
int
$order_nr,
29
protected
StepType
$type,
30
protected
string
$element_id
31
) {
32
}
33
34
public
function
getId
():
int
35
{
36
return
$this->id
;
37
}
38
39
public
function
getTourId
():
int
40
{
41
return
$this->tour_id;
42
}
43
44
public
function
getOrderNr
():
int
45
{
46
return
$this->order_nr;
47
}
48
49
public
function
getType
():
StepType
50
{
51
return
$this->type;
52
}
53
54
public
function
getElementId
(): string
55
{
56
return
$this->element_id;
57
}
58
}
$id
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
Definition:
plugin.php:23
ILIAS\Help\GuidedTour\Step\Step
Definition:
Step.php:24
ILIAS\Help\GuidedTour\Step\Step\getOrderNr
getOrderNr()
Definition:
Step.php:44
ILIAS\Help\GuidedTour\Step\Step\getElementId
getElementId()
Definition:
Step.php:54
ILIAS\Help\GuidedTour\Step\Step\getId
getId()
Definition:
Step.php:34
ILIAS\Help\GuidedTour\Step\Step\getTourId
getTourId()
Definition:
Step.php:39
ILIAS\Help\GuidedTour\Step\Step\__construct
__construct(protected int $id, protected int $tour_id, protected int $order_nr, protected StepType $type, protected string $element_id)
Definition:
Step.php:25
ILIAS\Help\GuidedTour\Step\Step\getType
getType()
Definition:
Step.php:49
ILIAS\Help\GuidedTour\Step
Definition:
Step.php:21
ILIAS\Help\GuidedTour\Step\StepType
StepType
Definition:
StepType.php:24
ILIAS\Repository\int
int(string $key)
Definition:
trait.BaseGUIRequest.php:61
components
ILIAS
Help
GuidedTour
Step
Step.php
Generated on Sun Nov 2 2025 23:02:34 for ILIAS by
1.9.4 (using
Doxyfile
)