ILIAS
release_5-4 Revision v5.4.26-12-gabc799a52e6
◀ ilDoc Overview
class.arIndexTableField.php
Go to the documentation of this file.
1
<?
php
2
require_once(
'./Services/ActiveRecord/Views/class.arViewField.php'
);
3
11
class
arIndexTableField
extends
arViewField
12
{
13
17
protected
$has_filter
=
false
;
21
protected
$sortable
=
false
;
25
protected
$visible_default
=
false
;
26
27
37
public
function
__construct
(
$name
=
""
,
$txt
= null,
$position
= null,
$visible
=
false
,
$custom_field
=
false
,
$sortable
=
false
,
$has_filter
=
false
)
38
{
39
$this->sortable =
$sortable
;
40
$this->has_filter =
$has_filter
;
41
parent::__construct(
$name
,
$txt
,
$position
,
$visible
,
$custom_field
);
42
}
43
44
48
public
function
setHasFilter
(
$has_filter
)
49
{
50
$this->has_filter =
$has_filter
;
51
}
52
53
57
public
function
getHasFilter
()
58
{
59
return
$this->has_filter
;
60
}
61
62
66
public
function
setSortable
(
$sortable
)
67
{
68
$this->sortable =
$sortable
;
69
}
70
71
75
public
function
getSortable
()
76
{
77
return
$this->sortable
;
78
}
79
80
84
public
function
setVisibleDefault
(
$visible_default
)
85
{
86
$this->
setVisible
(
true
);
87
$this->visible_default =
$visible_default
;
88
}
89
90
94
public
function
getVisibleDefault
()
95
{
96
return
$this->visible_default
;
97
}
98
}
arViewField\$txt
$txt
Definition:
class.arViewField.php:21
arViewField\setVisible
setVisible($visible)
Definition:
class.arViewField.php:124
arViewField\$position
$position
Definition:
class.arViewField.php:25
arIndexTableField
GUI-Class arIndexTableField.
Definition:
class.arIndexTableField.php:11
arField\$name
$name
Definition:
class.arField.php:150
arIndexTableField\$has_filter
$has_filter
Definition:
class.arIndexTableField.php:17
arIndexTableField\setHasFilter
setHasFilter($has_filter)
Definition:
class.arIndexTableField.php:48
arViewField\$visible
$visible
Definition:
class.arViewField.php:29
arIndexTableField\$sortable
$sortable
Definition:
class.arIndexTableField.php:21
arIndexTableField\__construct
__construct($name="", $txt=null, $position=null, $visible=false, $custom_field=false, $sortable=false, $has_filter=false)
Definition:
class.arIndexTableField.php:37
arViewField
GUI-Class arViewField.
Definition:
class.arViewField.php:11
arIndexTableField\getHasFilter
getHasFilter()
Definition:
class.arIndexTableField.php:57
arIndexTableField\getSortable
getSortable()
Definition:
class.arIndexTableField.php:75
arIndexTableField\setSortable
setSortable($sortable)
Definition:
class.arIndexTableField.php:66
php
arIndexTableField\$visible_default
$visible_default
Definition:
class.arIndexTableField.php:25
arViewField\$custom_field
$custom_field
Definition:
class.arViewField.php:33
arIndexTableField\getVisibleDefault
getVisibleDefault()
Definition:
class.arIndexTableField.php:94
arIndexTableField\setVisibleDefault
setVisibleDefault($visible_default)
Definition:
class.arIndexTableField.php:84
Services
ActiveRecord
Views
Index
class.arIndexTableField.php
Generated on Thu Jan 16 2025 19:02:15 for ILIAS by
1.8.13 (using
Doxyfile
)