ILIAS  release_5-1 Revision 5.0.0-5477-g43f3e3fab5f
class.ilAwarenessFeatureProvider.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 $user_id;
15 protected $lng;
16 protected $db;
17
21 function __construct()
22 {
23 global $lng, $ilDB;
24
25 $this->lng = $lng;
26 $this->db = $ilDB;
27 }
28
34 function setUserId($a_val)
35 {
36 $this->user_id = $a_val;
37 }
38
44 function getUserId()
45 {
46 return $this->user_id;
47 }
48
55 abstract function collectFeaturesForTargetUser($a_target_user);
56
57}
58
59?>
A class that provides a collection of features for the awareness tool.
collectFeaturesForTargetUser($a_target_user)
Collect features for a target user.
global $ilDB