ILIAS
trunk Revision v11.0_alpha-1715-g7fc467680fb
◀ 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
OrderingRow.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
21
namespace
ILIAS\UI\Implementation\Component\Table
;
22
23
use
ILIAS\UI\Component\Table
as
T
;
24
25
class
OrderingRow
extends
DataRow
implements T\OrderingRow
26
{
27
protected
int
$position
;
28
protected
bool
$ordering_disabled
=
false
;
29
30
public
function
withPosition
(
int
$position_index): self
31
{
32
$clone = clone $this;
33
$clone->position = $position_index;
34
return
$clone;
35
}
36
37
public
function
getPosition
():
int
38
{
39
return
$this->position
;
40
}
41
42
public
function
withOrderingDisabled
(
bool
$flag): self
43
{
44
$clone = clone $this;
45
$clone->ordering_disabled = $flag;
46
return
$clone;
47
}
48
49
public
function
isOrderingDisabled
(): bool
50
{
51
return
$this->ordering_disabled
;
52
}
53
}
ILIAS\UI\Implementation\Component\Table\OrderingRow\$ordering_disabled
bool $ordering_disabled
Definition:
OrderingRow.php:28
ILIAS\UI\Implementation\Component\Table
Definition:
AbstractTable.php:21
ILIAS\UI\Implementation\Component\Table\OrderingRow\withPosition
withPosition(int $position_index)
Definition:
OrderingRow.php:30
ILIAS\UI\Implementation\Component\Table\OrderingRow\withOrderingDisabled
withOrderingDisabled(bool $flag)
Definition:
OrderingRow.php:42
ILIAS\UI\Implementation\Component\Table\OrderingRow\$position
int $position
Definition:
OrderingRow.php:27
ILIAS\UI\Implementation\Component\Table\OrderingRow\isOrderingDisabled
isOrderingDisabled()
Definition:
OrderingRow.php:49
ILIAS\UI\Implementation\Component\Table\DataRow
Definition:
DataRow.php:27
ILIAS\UI\Implementation\Component\Table\OrderingRow\getPosition
getPosition()
Definition:
OrderingRow.php:37
ILIAS\UI\Component\Table
ILIAS\UI\Implementation\Component\Table\OrderingRow
Definition:
OrderingRow.php:25
ILIAS\Repository\int
int(string $key)
Definition:
trait.BaseGUIRequest.php:61
components
ILIAS
UI
src
Implementation
Component
Table
OrderingRow.php
Generated on Sat Apr 5 2025 23:04:25 for ILIAS by
1.8.13 (using
Doxyfile
)