ILIAS  release_5-2 Revision v5.2.25-18-g3f80b828510
class.ilUserAction.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 {
14  protected $text;
15  protected $href;
16  protected $data;
17  protected $type;
18 
24  function setText($a_val)
25  {
26  $this->text = $a_val;
27  }
28 
34  function getText()
35  {
36  return $this->text;
37  }
38 
44  function setHref($a_val)
45  {
46  $this->href = $a_val;
47  }
48 
54  function getHref()
55  {
56  return $this->href;
57  }
58 
64  function setType($a_val)
65  {
66  $this->type = $a_val;
67  }
68 
74  function getType()
75  {
76  return $this->type;
77  }
78 
84  function setData($a_val)
85  {
86  $this->data = $a_val;
87  }
88 
94  function getData()
95  {
96  return $this->data;
97  }
98 }
99 
100 ?>
Add some data
getType()
Get type.
getText()
Get text.
setType($a_val)
Set type.
getHref()
Get href.
setText($a_val)
Set text.
setHref($a_val)
Set href.
Action that can be performed on a user.
setData($a_val)
Set data attributes.
getData()
Get data attributes.