ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
ilLearningHistoryEntry Class Reference

This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Learning e.V. More...

+ Collaboration diagram for ilLearningHistoryEntry:

Public Member Functions

 __construct (string $achieve_text, string $achieve_in_text, string $icon_path, int $ts, int $obj_id, int $ref_id=0)
 
 getTimestamp ()
 
 getObjId ()
 
 getRefId ()
 
 getAchieveText ()
 
 getAchieveInText ()
 Get "achieve in ..." text. More...
 
 getIconPath ()
 

Protected Attributes

string $achieve_text
 
string $achieve_in_text
 
string $icon_path
 
int $ts
 
int $obj_id
 
int $ref_id
 

Detailed Description

This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Learning e.V.

ILIAS is licensed with the GPL-3.0, see https://www.gnu.org/licenses/gpl-3.0.en.html You should have received a copy of said license along with the source code, too.

If this is not the case or you just want to try ILIAS, you'll find us at: https://www.ilias.de https://github.com/ILIAS-eLearning Learning history entry

Author
Alexander Killing killi.nosp@m.ng@l.nosp@m.eifos.nosp@m..de

Definition at line 23 of file class.ilLearningHistoryEntry.php.

Constructor & Destructor Documentation

◆ __construct()

ilLearningHistoryEntry::__construct ( string  $achieve_text,
string  $achieve_in_text,
string  $icon_path,
int  $ts,
int  $obj_id,
int  $ref_id = 0 
)

Definition at line 32 of file class.ilLearningHistoryEntry.php.

References $achieve_in_text, $achieve_text, $icon_path, $obj_id, $ref_id, and $ts.

39  {
40  $this->achieve_text = $achieve_text;
41  $this->achieve_in_text = $achieve_in_text;
42  $this->icon_path = $icon_path;
43  $this->ts = $ts;
44  $this->obj_id = $obj_id;
45  $this->ref_id = $ref_id;
46  }

Member Function Documentation

◆ getAchieveInText()

ilLearningHistoryEntry::getAchieveInText ( )

Get "achieve in ..." text.

Definition at line 71 of file class.ilLearningHistoryEntry.php.

References $achieve_in_text.

71  : string
72  {
74  }

◆ getAchieveText()

ilLearningHistoryEntry::getAchieveText ( )

Definition at line 63 of file class.ilLearningHistoryEntry.php.

References $achieve_text.

63  : string
64  {
65  return $this->achieve_text;
66  }

◆ getIconPath()

ilLearningHistoryEntry::getIconPath ( )

Definition at line 76 of file class.ilLearningHistoryEntry.php.

References $icon_path.

76  : string
77  {
78  return $this->icon_path;
79  }

◆ getObjId()

ilLearningHistoryEntry::getObjId ( )

Definition at line 53 of file class.ilLearningHistoryEntry.php.

References $obj_id.

53  : int
54  {
55  return $this->obj_id;
56  }

◆ getRefId()

ilLearningHistoryEntry::getRefId ( )

Definition at line 58 of file class.ilLearningHistoryEntry.php.

References $ref_id.

58  : int
59  {
60  return $this->ref_id;
61  }

◆ getTimestamp()

ilLearningHistoryEntry::getTimestamp ( )

Definition at line 48 of file class.ilLearningHistoryEntry.php.

References $ts.

48  : int
49  {
50  return $this->ts;
51  }

Field Documentation

◆ $achieve_in_text

string ilLearningHistoryEntry::$achieve_in_text
protected

Definition at line 26 of file class.ilLearningHistoryEntry.php.

Referenced by __construct(), and getAchieveInText().

◆ $achieve_text

string ilLearningHistoryEntry::$achieve_text
protected

Definition at line 25 of file class.ilLearningHistoryEntry.php.

Referenced by __construct(), and getAchieveText().

◆ $icon_path

string ilLearningHistoryEntry::$icon_path
protected

Definition at line 27 of file class.ilLearningHistoryEntry.php.

Referenced by __construct(), and getIconPath().

◆ $obj_id

int ilLearningHistoryEntry::$obj_id
protected

Definition at line 29 of file class.ilLearningHistoryEntry.php.

Referenced by __construct(), and getObjId().

◆ $ref_id

int ilLearningHistoryEntry::$ref_id
protected

Definition at line 30 of file class.ilLearningHistoryEntry.php.

Referenced by __construct(), and getRefId().

◆ $ts

int ilLearningHistoryEntry::$ts
protected

Definition at line 28 of file class.ilLearningHistoryEntry.php.

Referenced by __construct(), and getTimestamp().


The documentation for this class was generated from the following file: