ILIAS  release_5-4 Revision v5.4.26-12-gabc799a52e6
class.ilLearningHistoryEntry.php
Go to the documentation of this file.
1 <?php
2 
3 /* Copyright (c) 1998-2018 ILIAS open source, Extended GPL, see docs/LICENSE */
4 
12 {
16  protected $achieve_text;
17 
21  protected $achieve_in_text;
22 
26  protected $icon_path;
27 
31  protected $ts;
32 
36  protected $obj_id;
37 
41  protected $ref_id;
42 
53  {
54  $this->achieve_text = $achieve_text;
55  $this->achieve_in_text = $achieve_in_text;
56  $this->icon_path = $icon_path;
57  $this->ts = $ts;
58  $this->obj_id = $obj_id;
59  $this->ref_id = $ref_id;
60  }
61 
67  public function getTimestamp()
68  {
69  return $this->ts;
70  }
71 
77  public function getObjId()
78  {
79  return $this->obj_id;
80  }
81 
87  public function getRefId()
88  {
89  return $this->ref_id;
90  }
91 
97  public function getAchieveText()
98  {
99  return $this->achieve_text;
100  }
101 
107  public function getAchieveInText()
108  {
109  return $this->achieve_in_text;
110  }
111 
117  public function getIconPath()
118  {
119  return $this->icon_path;
120  }
121 }
getAchieveInText()
Get achieve in text.
__construct($achieve_text, $achieve_in_text, $icon_path, $ts, $obj_id, $ref_id=0)
Constructor.