ILIAS
trunk Revision v11.0_alpha-1689-g66c127b4ae8
◀ ilDoc Overview
Main Page
Related Pages
Modules
+
Namespaces
Namespace List
+
Namespace Members
+
All
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Functions
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
u
v
w
x
+
Variables
$
c
e
g
h
j
l
m
p
s
t
u
v
+
Enumerations
a
c
e
f
i
j
l
m
n
o
p
r
s
t
u
v
z
+
Enumerator
a
c
d
e
f
g
i
l
m
n
o
p
q
s
t
u
v
y
+
Data Structures
Data Structures
Data Structure Index
Class Hierarchy
+
Data Fields
+
All
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Ö
+
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Variables
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Ö
Enumerations
Enumerator
+
Files
File List
+
Globals
+
All
$
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
z
+
Functions
a
b
c
d
e
f
g
h
i
m
n
p
r
s
t
u
v
+
Variables
$
a
c
e
g
h
i
m
n
o
p
r
s
t
u
v
z
Enumerations
Enumerator
Examples
•
All
Data Structures
Namespaces
Files
Functions
Variables
Enumerations
Enumerator
Modules
Pages
class.ItemBlock.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
21
namespace
ILIAS\Container\Content\ItemBlock
;
22
23
use
ILIAS\Container\Content\Block
;
24
28
class
ItemBlock
29
{
30
protected
array
$objective_ids
= [];
31
protected
bool
$page_embedded
=
false
;
32
protected
int
$pos
= 0;
36
protected
array
$item_ref_ids
= [];
37
protected
Block
$block
;
38
protected
string
$block_id
=
""
;
39
protected
bool
$limit_exhausted
=
false
;
40
41
public
function
__construct
(
42
string
$block_id,
43
Block
$block,
44
array $item_ref_ids,
45
bool
$limit_exhausted,
46
array $objective_ids = []
47
) {
48
$this->block_id =
$block_id
;
49
$this->block =
$block
;
50
$this->item_ref_ids =
$item_ref_ids
;
51
$this->limit_exhausted =
$limit_exhausted
;
52
$this->objective_ids =
$objective_ids
;
53
}
54
public
function
getId
(): string
55
{
56
return
$this->block_id
;
57
}
58
59
public
function
getBlock
():
Block
60
{
61
return
$this->block
;
62
}
63
64
public
function
getLimitExhausted
(): bool
65
{
66
return
$this->limit_exhausted
;
67
}
68
72
public
function
getItemRefIds
(): array
73
{
74
return
$this->item_ref_ids
;
75
}
76
80
public
function
getObjectiveIds
(): array
81
{
82
return
$this->objective_ids
;
83
}
84
85
public
function
setPosition
(
int
$pos): void
86
{
87
$this->pos =
$pos
;
88
}
89
90
public
function
getPosition
():
int
91
{
92
return
$this->pos
;
93
}
94
95
public
function
setPageEmbedded
(
bool
$embedded): void
96
{
97
$this->page_embedded = $embedded;
98
}
99
100
public
function
getPageEmbedded
(): bool
101
{
102
return
$this->page_embedded
;
103
}
104
}
ILIAS\UI\Component\Legacy\Content::ItemBlock\ItemBlock\$block
Block $block
Definition:
class.ItemBlock.php:37
ILIAS\UI\Component\Legacy\Content::ItemBlock\ItemBlock\getItemRefIds
getItemRefIds()
Definition:
class.ItemBlock.php:72
ILIAS\UI\Component\Legacy\Content::ItemBlock\ItemBlock\getPosition
getPosition()
Definition:
class.ItemBlock.php:90
ILIAS\UI\Component\Legacy\Content\Block
Definition:
interface.Block.php:26
ILIAS\UI\Component\Legacy\Content::ItemBlock\ItemBlock\setPosition
setPosition(int $pos)
Definition:
class.ItemBlock.php:85
ILIAS\UI\Component\Legacy\Content::ItemBlock\ItemBlock\getId
getId()
Definition:
class.ItemBlock.php:54
ILIAS\Container\Content\ItemBlock
Definition:
class.BlockItemsInfo.php:21
Block
ILIAS\UI\Component\Legacy\Content::ItemBlock\ItemBlock\getBlock
getBlock()
Definition:
class.ItemBlock.php:59
ILIAS\UI\Component\Legacy\Content::ItemBlock\ItemBlock
Definition:
class.ItemBlock.php:28
ILIAS\UI\Component\Legacy\Content::ItemBlock\ItemBlock\setPageEmbedded
setPageEmbedded(bool $embedded)
Definition:
class.ItemBlock.php:95
ILIAS\UI\Component\Legacy\Content::ItemBlock\ItemBlock\getLimitExhausted
getLimitExhausted()
Definition:
class.ItemBlock.php:64
ILIAS\UI\Component\Legacy\Content::ItemBlock\ItemBlock\$pos
int $pos
Definition:
class.ItemBlock.php:32
ILIAS\UI\Component\Legacy\Content::ItemBlock\ItemBlock\$block_id
string $block_id
Definition:
class.ItemBlock.php:38
ILIAS\UI\Component\Legacy\Content::ItemBlock\ItemBlock\$page_embedded
bool $page_embedded
Definition:
class.ItemBlock.php:31
ILIAS\UI\Component\Legacy\Content::ItemBlock\ItemBlock\__construct
__construct(string $block_id, Block $block, array $item_ref_ids, bool $limit_exhausted, array $objective_ids=[])
Definition:
class.ItemBlock.php:41
ILIAS\UI\Component\Legacy\Content::ItemBlock\ItemBlock\$objective_ids
array $objective_ids
Definition:
class.ItemBlock.php:30
ILIAS\UI\Component\Legacy\Content::ItemBlock\ItemBlock\getObjectiveIds
getObjectiveIds()
Definition:
class.ItemBlock.php:80
ILIAS\UI\Component\Legacy\Content::ItemBlock\ItemBlock\getPageEmbedded
getPageEmbedded()
Definition:
class.ItemBlock.php:100
ILIAS\UI\Component\Legacy\Content::ItemBlock\ItemBlock\$item_ref_ids
array $item_ref_ids
Definition:
class.ItemBlock.php:36
ILIAS\Repository\int
int(string $key)
Definition:
trait.BaseGUIRequest.php:61
ILIAS\UI\Component\Legacy\Content::ItemBlock\ItemBlock\$limit_exhausted
bool $limit_exhausted
Definition:
class.ItemBlock.php:39
components
ILIAS
Container
Content
ItemBlock
class.ItemBlock.php
Generated on Wed Apr 2 2025 23:02:31 for ILIAS by
1.8.13 (using
Doxyfile
)