ILIAS  release_5-2 Revision v5.2.25-18-g3f80b828510
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  static function getInstance()
25  {
26  return new ilUserActionCollection();
27  }
28 
34  function addAction(ilUserAction $a_action)
35  {
36  $this->actions[] = $a_action;
37  }
38 
44  function getActions()
45  {
46  return $this->actions;
47  }
48 
49 
50 }
51 
52 ?>
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.