ILIAS
release_5-2 Revision v5.2.25-18-g3f80b828510
◀ 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
16
protected
$has_filter
=
false
;
20
protected
$sortable
=
false
;
24
protected
$visible_default
=
false
;
25
26
36
function
__construct
(
$name
=
""
,
$txt
= NULL,
$position
= NULL,
$visible
=
false
,
$custom_field
=
false
,
$sortable
=
false
,
$has_filter
=
false
) {
37
$this->sortable =
$sortable
;
38
$this->has_filter =
$has_filter
;
39
parent::__construct(
$name
,
$txt
,
$position
,
$visible
,
$custom_field
);
40
}
41
42
46
public
function
setHasFilter
(
$has_filter
) {
47
$this->has_filter =
$has_filter
;
48
}
49
50
54
public
function
getHasFilter
() {
55
return
$this->has_filter
;
56
}
57
58
62
public
function
setSortable
(
$sortable
) {
63
$this->sortable =
$sortable
;
64
}
65
66
70
public
function
getSortable
() {
71
return
$this->sortable
;
72
}
73
74
78
public
function
setVisibleDefault
(
$visible_default
) {
79
$this->
setVisible
(
true
);
80
$this->visible_default =
$visible_default
;
81
}
82
83
87
public
function
getVisibleDefault
() {
88
return
$this->visible_default
;
89
}
90
}
arViewField\$txt
$txt
Definition:
class.arViewField.php:20
arViewField\setVisible
setVisible($visible)
Definition:
class.arViewField.php:118
arViewField\$position
$position
Definition:
class.arViewField.php:24
arIndexTableField
GUI-Class arIndexTableField.
Definition:
class.arIndexTableField.php:11
arField\$name
$name
Definition:
class.arField.php:147
arIndexTableField\$has_filter
$has_filter
Definition:
class.arIndexTableField.php:16
arIndexTableField\setHasFilter
setHasFilter($has_filter)
Definition:
class.arIndexTableField.php:46
arViewField\$visible
$visible
Definition:
class.arViewField.php:28
arIndexTableField\$sortable
$sortable
Definition:
class.arIndexTableField.php:20
arIndexTableField\__construct
__construct($name="", $txt=NULL, $position=NULL, $visible=false, $custom_field=false, $sortable=false, $has_filter=false)
Definition:
class.arIndexTableField.php:36
arViewField
GUI-Class arViewField.
Definition:
class.arViewField.php:11
arIndexTableField\getHasFilter
getHasFilter()
Definition:
class.arIndexTableField.php:54
arIndexTableField\getSortable
getSortable()
Definition:
class.arIndexTableField.php:70
arIndexTableField\setSortable
setSortable($sortable)
Definition:
class.arIndexTableField.php:62
php
arIndexTableField\$visible_default
$visible_default
Definition:
class.arIndexTableField.php:24
arViewField\$custom_field
$custom_field
Definition:
class.arViewField.php:32
arIndexTableField\getVisibleDefault
getVisibleDefault()
Definition:
class.arIndexTableField.php:87
arIndexTableField\setVisibleDefault
setVisibleDefault($visible_default)
Definition:
class.arIndexTableField.php:78
Services
ActiveRecord
Views
Index
class.arIndexTableField.php
Generated on Fri Mar 7 2025 19:01:05 for ILIAS by
1.8.13 (using
Doxyfile
)