ILIAS  release_5-1 Revision 5.0.0-5477-g43f3e3fab5f
class.ilAwarenessUserCollection.php
Go to the documentation of this file.
1<?php
2
3/* Copyright (c) 1998-2014 ILIAS open source, Extended GPL, see docs/LICENSE */
4
13{
14 protected $users = array();
15
21 static function getInstance()
22 {
23 return new ilAwarenessUserCollection();
24 }
25
31 function addUser($a_id)
32 {
33 $this->users[$a_id] = $a_id;
34 }
35
41 function removeUser($a_id)
42 {
43 if (isset($this->users[$a_id]))
44 {
45 unset($this->users[$a_id]);
46 }
47 }
48
54 function getUsers()
55 {
56 return $this->users;
57 }
58
59
60}
61
62?>
Represents a set of collected users.