◆ __construct()
◆ assignment()
ILIAS\Exercise\InternalRepoService::assignment |
( |
| ) |
|
◆ instructionFiles()
ILIAS\Exercise\InternalRepoService::instructionFiles |
( |
| ) |
|
Definition at line 79 of file class.InternalRepoService.php.
79 : InstructionFileRepository
80 {
81 return self::$instance["instruction"] ??= new InstructionFileRepository(
82 $this->irss(),
83 $this->db
84 );
85 }
◆ peerReview()
ILIAS\Exercise\InternalRepoService::peerReview |
( |
| ) |
|
Definition at line 60 of file class.InternalRepoService.php.
60 : PeerReview\RepoService
61 {
62 return self::$instance["peer_review"] ??= new PeerReview\RepoService(
63 $this->irss(),
64 $this->data,
65 $this->db
66 );
67 }
◆ sampleSolution()
ILIAS\Exercise\InternalRepoService::sampleSolution |
( |
| ) |
|
Definition at line 87 of file class.InternalRepoService.php.
87 : SampleSolutionRepository
88 {
89 return self::$instance["sample_sol"] ??= new SampleSolutionRepository(
90 $this->irss(),
91 $this->db
92 );
93 }
◆ settings()
ILIAS\Exercise\InternalRepoService::settings |
( |
| ) |
|
Definition at line 44 of file class.InternalRepoService.php.
44 : SettingsDBRepository
45 {
46 return self::$instance["settings"] ??= new SettingsDBRepository(
47 $this->db,
48 $this->data
49 );
50 }
◆ submission()
ILIAS\Exercise\InternalRepoService::submission |
( |
| ) |
|
Definition at line 70 of file class.InternalRepoService.php.
70 : Submission\SubmissionRepositoryInterface
71 {
72 return self::$instance["submission"] ??= new Submission\SubmissionRepository(
73 $this->irss(),
74 $this->data,
75 $this->db
76 );
77 }
◆ team()
ILIAS\Exercise\InternalRepoService::team |
( |
| ) |
|
Definition at line 119 of file class.InternalRepoService.php.
119 : TeamDBRepository
120 {
121 return self::$instance["team"] ??= new TeamDBRepository(
122 $this->db,
123 $this->data
124 );
125 }
◆ tutorFeedbackFile()
ILIAS\Exercise\InternalRepoService::tutorFeedbackFile |
( |
| ) |
|
Definition at line 95 of file class.InternalRepoService.php.
95 : TutorFeedbackFileRepository
96 {
97 return self::$instance["tutor_feedback"] ??= new TutorFeedbackFileRepository(
98 $this->irss(),
99 $this->db
100 );
101 }
◆ tutorFeedbackFileTeam()
ILIAS\Exercise\InternalRepoService::tutorFeedbackFileTeam |
( |
| ) |
|
Definition at line 103 of file class.InternalRepoService.php.
103 : TutorFeedbackFileTeamRepository
104 {
105 return self::$instance["tutor_feedback_team"] ??= new TutorFeedbackFileTeamRepository(
106 $this->irss(),
107 $this->db
108 );
109 }
◆ tutorFeedbackZip()
ILIAS\Exercise\InternalRepoService::tutorFeedbackZip |
( |
| ) |
|
Definition at line 111 of file class.InternalRepoService.php.
111 : TutorFeedbackZipRepository
112 {
113 return self::$instance["tutor_feedback_zip"] ??= new TutorFeedbackZipRepository(
114 $this->irss(),
115 $this->db
116 );
117 }
◆ $instance
array ILIAS\Exercise\InternalRepoService::$instance = [] |
|
staticprotected |
The documentation for this class was generated from the following file: