ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
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.

37 : ?int
38 {
39 return $this->active_id;
40 }

References $active_id.

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

+ Here is the caller graph for this function:

◆ getAnonymousId()

ilTestParticipant::getAnonymousId ( )

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

47 : ?int
48 {
50 }

References $anonymous_id.

◆ getFinishedTries()

ilTestParticipant::getFinishedTries ( )

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

117 : ?int
118 {
120 }

References $finished_tries.

◆ getFirstname()

ilTestParticipant::getFirstname ( )

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

87 : ?string
88 {
89 return $this->firstname;
90 }

References $firstname.

Referenced by ilTestParticipantList\buildInviteeFullname().

+ Here is the caller graph for this function:

◆ getLastname()

ilTestParticipant::getLastname ( )

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

77 : ?string
78 {
79 return $this->lastname;
80 }

References $lastname.

Referenced by ilTestParticipantList\buildInviteeFullname().

+ Here is the caller graph for this function:

◆ getLogin()

ilTestParticipant::getLogin ( )

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

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

References $login.

◆ getMatriculation()

ilTestParticipant::getMatriculation ( )

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

97 : ?string
98 {
100 }

References $matriculation.

◆ 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.

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

References $usr_id.

◆ 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.

137 : ?bool
138 {
140 }

References $unfinished_passes.

◆ isActiveStatus()

ilTestParticipant::isActiveStatus ( )

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

107 : ?bool
108 {
110 }

References $active_status.

◆ isTestFinished()

ilTestParticipant::isTestFinished ( )

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

127 : ?bool
128 {
130 }

References $test_finished.

◆ setActiveId()

ilTestParticipant::setActiveId ( int  $active_id)

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

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

References $active_id.

◆ setActiveStatus()

ilTestParticipant::setActiveStatus ( bool  $active_status)

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

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

References $active_status.

◆ setAnonymousId()

ilTestParticipant::setAnonymousId ( int  $anonymous_id)

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

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

References $anonymous_id.

◆ setFinishedTries()

ilTestParticipant::setFinishedTries ( int  $finished_tries)

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

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

References $finished_tries.

◆ setFirstname()

ilTestParticipant::setFirstname ( string  $firstname)

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

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

References $firstname.

◆ setLastname()

ilTestParticipant::setLastname ( string  $lastname)

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

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

References $lastname.

◆ setLogin()

ilTestParticipant::setLogin ( string  $login)

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

72 : void
73 {
74 $this->login = $login;
75 }

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

+ Here is the call graph for this function:

◆ setMatriculation()

ilTestParticipant::setMatriculation ( string  $matriculation)

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

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

References $matriculation.

◆ setScoring()

ilTestParticipant::setScoring ( ilTestParticipantScoring  $scoring)

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

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

References $scoring.

◆ setTestFinished()

ilTestParticipant::setTestFinished ( bool  $test_finished)

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

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

References $test_finished.

◆ setUnfinishedPasses()

ilTestParticipant::setUnfinishedPasses ( bool  $unfinished_passes)

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

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

References $unfinished_passes.

◆ setUsrId()

ilTestParticipant::setUsrId ( int  $usr_id)

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

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

References $usr_id.

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: