ILIAS  release_5-3 Revision v5.3.23-19-g915713cf615
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 
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 }
static getInstance()
Get instance.
Represents a set of collected user actions.
addAction(ilUserAction $a_action)
Add action.
Create styles array
The data for the language used.
Action that can be performed on a user.