ILIAS  release_5-1 Revision 5.0.0-5477-g43f3e3fab5f
class.ilAwarenessFeatureCollection.php
Go to the documentation of this file.
1<?php
2
3/* Copyright (c) 1998-2015 ILIAS open source, Extended GPL, see docs/LICENSE */
4
13{
14 protected $features = array();
15
21 static function getInstance()
22 {
24 }
25
31 function addFeature(ilAwarenessFeature $a_feature)
32 {
33 $this->features[] = $a_feature;
34 }
35
41 function getFeatures()
42 {
43 return $this->features;
44 }
45
46
47}
48
49?>
Represents a set of collected features.
addFeature(ilAwarenessFeature $a_feature)
Add feature.
Awareness tool feature (presented in user drop downs) (data object)