ILIAS  trunk Revision v11.0_alpha-2645-g16283d3b3f8
ilTestParticipant Class Reference
+ Collaboration diagram for ilTestParticipant:

Public Member Functions

 getActiveId ()
 
 setActiveId (int $active_id)
 
 getAnonymousId ()
 
 setAnonymousId (int $anonymous_id)
 
 getUsrId ()
 
 setUsrId (int $usr_id)
 
 getLogin ()
 
 setLogin (string $login)
 
 getLastname ()
 
 setLastname (string $lastname)
 
 getFirstname ()
 
 setFirstname (string $firstname)
 
 getMatriculation ()
 
 setMatriculation (string $matriculation)
 
 isActiveStatus ()
 
 setActiveStatus (bool $active_status)
 
 getFinishedTries ()
 
 setFinishedTries (int $finished_tries)
 
 isTestFinished ()
 
 setTestFinished (bool $test_finished)
 
 hasUnfinishedPasses ()
 
 setUnfinishedPasses (bool $unfinished_passes)
 
 getScoring ()
 
 setScoring (ilTestParticipantScoring $scoring)
 
 hasScoring ()
 

Protected Attributes

int $active_id = null
 
int $anonymous_id = null
 
int $usr_id = null
 
string $login = null
 
string $lastname = null
 
string $firstname = null
 
string $matriculation = null
 
bool $active_status = null
 
string $client_id = null
 
int $finished_tries = null
 
bool $test_finished = null
 
bool $unfinished_passes = null
 
ilTestParticipantScoring $scoring = null
 

Detailed Description

Definition at line 21 of file class.ilTestParticipant.php.

Member Function Documentation

◆ getActiveId()

ilTestParticipant::getActiveId ( )

Definition at line 37 of file class.ilTestParticipant.php.

References $active_id.

Referenced by ilTestParticipantList\buildFullname(), and ilTestParticipantList\buildParticipantsFullname().

37  : ?int
38  {
39  return $this->active_id;
40  }
+ Here is the caller graph for this function:

◆ getAnonymousId()

ilTestParticipant::getAnonymousId ( )

Definition at line 47 of file class.ilTestParticipant.php.

References $anonymous_id.

47  : ?int
48  {
49  return $this->anonymous_id;
50  }

◆ getFinishedTries()

ilTestParticipant::getFinishedTries ( )

Definition at line 117 of file class.ilTestParticipant.php.

References $finished_tries.

117  : ?int
118  {
119  return $this->finished_tries;
120  }

◆ getFirstname()

ilTestParticipant::getFirstname ( )

Definition at line 87 of file class.ilTestParticipant.php.

References $firstname.

Referenced by ilTestParticipantList\buildInviteeFullname().

87  : ?string
88  {
89  return $this->firstname;
90  }
+ Here is the caller graph for this function:

◆ getLastname()

ilTestParticipant::getLastname ( )

Definition at line 77 of file class.ilTestParticipant.php.

References $lastname.

Referenced by ilTestParticipantList\buildInviteeFullname().

77  : ?string
78  {
79  return $this->lastname;
80  }
+ Here is the caller graph for this function:

◆ getLogin()

ilTestParticipant::getLogin ( )

Definition at line 67 of file class.ilTestParticipant.php.

References $login.

67  : ?string
68  {
69  return $this->login;
70  }

◆ getMatriculation()

ilTestParticipant::getMatriculation ( )

Definition at line 97 of file class.ilTestParticipant.php.

References $matriculation.

97  : ?string
98  {
99  return $this->matriculation;
100  }

◆ getScoring()

ilTestParticipant::getScoring ( )

Definition at line 147 of file class.ilTestParticipant.php.

References $scoring.

◆ getUsrId()

ilTestParticipant::getUsrId ( )

Definition at line 57 of file class.ilTestParticipant.php.

References $usr_id.

57  : ?int
58  {
59  return $this->usr_id;
60  }

◆ hasScoring()

ilTestParticipant::hasScoring ( )

Definition at line 157 of file class.ilTestParticipant.php.

157  : bool
158  {
159  return $this->scoring instanceof ilTestParticipantScoring;
160  }

◆ hasUnfinishedPasses()

ilTestParticipant::hasUnfinishedPasses ( )

Definition at line 137 of file class.ilTestParticipant.php.

References $unfinished_passes.

137  : ?bool
138  {
140  }

◆ isActiveStatus()

ilTestParticipant::isActiveStatus ( )

Definition at line 107 of file class.ilTestParticipant.php.

References $active_status.

107  : ?bool
108  {
109  return $this->active_status;
110  }

◆ isTestFinished()

ilTestParticipant::isTestFinished ( )

Definition at line 127 of file class.ilTestParticipant.php.

References $test_finished.

127  : ?bool
128  {
129  return $this->test_finished;
130  }

◆ setActiveId()

ilTestParticipant::setActiveId ( int  $active_id)

Definition at line 42 of file class.ilTestParticipant.php.

References $active_id.

42  : void
43  {
44  $this->active_id = $active_id;
45  }

◆ setActiveStatus()

ilTestParticipant::setActiveStatus ( bool  $active_status)

Definition at line 112 of file class.ilTestParticipant.php.

References $active_status.

112  : void
113  {
114  $this->active_status = $active_status;
115  }

◆ setAnonymousId()

ilTestParticipant::setAnonymousId ( int  $anonymous_id)

Definition at line 52 of file class.ilTestParticipant.php.

References $anonymous_id.

52  : void
53  {
54  $this->anonymous_id = $anonymous_id;
55  }

◆ setFinishedTries()

ilTestParticipant::setFinishedTries ( int  $finished_tries)

Definition at line 122 of file class.ilTestParticipant.php.

References $finished_tries.

122  : void
123  {
124  $this->finished_tries = $finished_tries;
125  }

◆ setFirstname()

ilTestParticipant::setFirstname ( string  $firstname)

Definition at line 92 of file class.ilTestParticipant.php.

References $firstname.

92  : void
93  {
94  $this->firstname = $firstname;
95  }

◆ setLastname()

ilTestParticipant::setLastname ( string  $lastname)

Definition at line 82 of file class.ilTestParticipant.php.

References $lastname.

82  : void
83  {
84  $this->lastname = $lastname;
85  }

◆ setLogin()

ilTestParticipant::setLogin ( string  $login)

Definition at line 72 of file class.ilTestParticipant.php.

References $login, and ILIAS\UI\examples\Symbol\Glyph\Login\login().

72  : void
73  {
74  $this->login = $login;
75  }
login()
description: > Example for rendring a login glyph.
Definition: login.php:41
+ Here is the call graph for this function:

◆ setMatriculation()

ilTestParticipant::setMatriculation ( string  $matriculation)

Definition at line 102 of file class.ilTestParticipant.php.

References $matriculation.

102  : void
103  {
104  $this->matriculation = $matriculation;
105  }

◆ setScoring()

ilTestParticipant::setScoring ( ilTestParticipantScoring  $scoring)

Definition at line 152 of file class.ilTestParticipant.php.

References $scoring.

152  : void
153  {
154  $this->scoring = $scoring;
155  }
ilTestParticipantScoring $scoring

◆ setTestFinished()

ilTestParticipant::setTestFinished ( bool  $test_finished)

Definition at line 132 of file class.ilTestParticipant.php.

References $test_finished.

132  : void
133  {
134  $this->test_finished = $test_finished;
135  }

◆ setUnfinishedPasses()

ilTestParticipant::setUnfinishedPasses ( bool  $unfinished_passes)

Definition at line 142 of file class.ilTestParticipant.php.

References $unfinished_passes.

142  : void
143  {
144  $this->unfinished_passes = $unfinished_passes;
145  }

◆ setUsrId()

ilTestParticipant::setUsrId ( int  $usr_id)

Definition at line 62 of file class.ilTestParticipant.php.

References $usr_id.

62  : void
63  {
64  $this->usr_id = $usr_id;
65  }

Field Documentation

◆ $active_id

int ilTestParticipant::$active_id = null
protected

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

Referenced by getActiveId(), and setActiveId().

◆ $active_status

bool ilTestParticipant::$active_status = null
protected

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

Referenced by isActiveStatus(), and setActiveStatus().

◆ $anonymous_id

int ilTestParticipant::$anonymous_id = null
protected

Definition at line 24 of file class.ilTestParticipant.php.

Referenced by getAnonymousId(), and setAnonymousId().

◆ $client_id

string ilTestParticipant::$client_id = null
protected

Definition at line 31 of file class.ilTestParticipant.php.

◆ $finished_tries

int ilTestParticipant::$finished_tries = null
protected

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

Referenced by getFinishedTries(), and setFinishedTries().

◆ $firstname

string ilTestParticipant::$firstname = null
protected

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

Referenced by getFirstname(), and setFirstname().

◆ $lastname

string ilTestParticipant::$lastname = null
protected

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

Referenced by getLastname(), and setLastname().

◆ $login

string ilTestParticipant::$login = null
protected

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

Referenced by getLogin(), and setLogin().

◆ $matriculation

string ilTestParticipant::$matriculation = null
protected

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

Referenced by getMatriculation(), and setMatriculation().

◆ $scoring

ilTestParticipantScoring ilTestParticipant::$scoring = null
protected

Definition at line 35 of file class.ilTestParticipant.php.

Referenced by getScoring(), and setScoring().

◆ $test_finished

bool ilTestParticipant::$test_finished = null
protected

Definition at line 33 of file class.ilTestParticipant.php.

Referenced by isTestFinished(), and setTestFinished().

◆ $unfinished_passes

bool ilTestParticipant::$unfinished_passes = null
protected

Definition at line 34 of file class.ilTestParticipant.php.

Referenced by hasUnfinishedPasses(), and setUnfinishedPasses().

◆ $usr_id

int ilTestParticipant::$usr_id = null
protected

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

Referenced by getUsrId(), and setUsrId().


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