ILIAS
release_5-0 Revision 5.0.0-1144-gc4397b1f870
◀ ilDoc Overview
Main Page
Related Pages
Modules
+
Namespaces
Namespace List
+
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
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
+
Files
File List
+
Globals
+
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
z
+
Functions
_
a
b
c
d
e
f
g
h
i
k
l
m
o
p
r
s
t
u
v
w
x
+
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
z
Examples
•
All
Data Structures
Namespaces
Files
Functions
Variables
Modules
Pages
class.arIndexTableActions.php
Go to the documentation of this file.
1
<?php
2
require_once(
'./Customizing/global/plugins/Libraries/ActiveRecord/Views/Index/class.arIndexTableAction.php'
);
3
11
class
arIndexTableActions
{
12
16
protected
$actions
= array();
17
18
22
public
function
addAction
(
arIndexTableAction
$action) {
23
$this->actions[$action->
getId
()] = $action;
24
}
25
26
30
public
function
getActions
() {
31
return
$this->actions
;
32
}
33
34
38
public
function
getActionsAsKeyTextArray
() {
39
$actions
= array();
40
foreach
($this->
getActions
() as $action) {
44
$actions
[$action->getId()] = $action->getTitle();
45
}
46
47
return
$actions
;
48
}
49
50
56
public
function
getAction
($action_id) {
57
if
(array_key_exists($action_id, $this->actions)) {
58
return
$this->actions[$action_id];
59
}
60
61
return
false
;
62
}
63
64
68
public
function
hasActions
() {
69
return
!empty($this->actions);
70
}
71
}
arIndexTableAction\getId
getId()
Definition:
class.arIndexTableAction.php:93
arIndexTableActions
GUI-Class arIndexTableActions.
Definition:
class.arIndexTableActions.php:11
arIndexTableActions\getActions
getActions()
Definition:
class.arIndexTableActions.php:30
arIndexTableActions\$actions
$actions
Definition:
class.arIndexTableActions.php:16
arIndexTableActions\getActionsAsKeyTextArray
getActionsAsKeyTextArray()
Definition:
class.arIndexTableActions.php:38
arIndexTableActions\getAction
getAction($action_id)
Definition:
class.arIndexTableActions.php:56
arIndexTableActions\addAction
addAction(arIndexTableAction $action)
Definition:
class.arIndexTableActions.php:22
arIndexTableActions\hasActions
hasActions()
Definition:
class.arIndexTableActions.php:68
arIndexTableAction
GUI-Class arIndexTableAction.
Definition:
class.arIndexTableAction.php:10
Services
ActiveRecord
Views
Index
class.arIndexTableActions.php
Generated on Mon Mar 31 2025 19:00:42 for ILIAS by
1.8.13 (using
Doxyfile
)