ILIAS  release_7 Revision v7.30-3-g800a261c036
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}
An exception for terminatinating execution or to throw for unit testing.
Represents a set of collected user actions.
addAction(ilUserAction $a_action)
Add action.
Action that can be performed on a user.