ILIAS
release_6 Revision v6.24-5-g0c8bfefb3b8
◀ ilDoc Overview
Main Page
Related Pages
Modules
+
Namespaces
Namespace List
+
Namespace Members
+
All
$
_
a
b
c
d
e
f
g
h
i
j
l
m
p
s
t
w
+
Functions
_
a
b
c
f
g
h
i
s
t
w
+
Variables
$
c
d
e
f
g
h
j
l
m
p
s
t
+
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
+
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
l
m
n
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.ilUserActionCollection.php
Go to the documentation of this file.
1
<?php
2
3
/* Copyright (c) 1998-2016 ILIAS open source, Extended GPL, see docs/LICENSE */
4
12
class
ilUserActionCollection
13
{
17
protected
$actions
= array();
18
24
public
static
function
getInstance
()
25
{
26
return
new
ilUserActionCollection
();
27
}
28
34
public
function
addAction
(
ilUserAction
$a_action)
35
{
36
$this->actions[] = $a_action;
37
}
38
44
public
function
getActions
()
45
{
46
return
$this->actions
;
47
}
48
}
ilUserActionCollection\getInstance
static getInstance()
Get instance.
Definition:
class.ilUserActionCollection.php:24
ilUserActionCollection
Represents a set of collected user actions.
Definition:
class.ilUserActionCollection.php:12
ilUserActionCollection\addAction
addAction(ilUserAction $a_action)
Add action.
Definition:
class.ilUserActionCollection.php:34
ilUserActionCollection\$actions
$actions
Definition:
class.ilUserActionCollection.php:17
ilUserActionCollection\getActions
getActions()
Get users.
Definition:
class.ilUserActionCollection.php:44
ilUserAction
Action that can be performed on a user.
Definition:
class.ilUserAction.php:12
Services
User
Actions
classes
class.ilUserActionCollection.php
Generated on Thu Apr 17 2025 20:01:24 for ILIAS by
1.8.13 (using
Doxyfile
)