ILIAS  release_5-1 Revision 5.0.0-5477-g43f3e3fab5f
class.ilAwarenessFeature.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 $text;
15 protected $href;
16 protected $data;
17
23 function setText($a_val)
24 {
25 $this->text = $a_val;
26 }
27
33 function getText()
34 {
35 return $this->text;
36 }
37
43 function setHref($a_val)
44 {
45 $this->href = $a_val;
46 }
47
53 function getHref()
54 {
55 return $this->href;
56 }
57
63 function setData($a_val)
64 {
65 $this->data = $a_val;
66 }
67
73 function getData()
74 {
75 return $this->data;
76 }
77}
78
79?>
Awareness tool feature (presented in user drop downs) (data object)
setData($a_val)
Set data attributes.
getData()
Get data attributes.