Service class for tests.
More...
|
static | isManScoringDone ($activeId) |
| reads the flag wether manscoring is done for the given test active or not from the global settings (scope: assessment / key: manscoring_done_<activeId>) More...
|
|
static | setManScoringDone ($activeId, $manScoringDone) |
| stores the flag wether manscoring is done for the given test active or not within the global settings (scope: assessment / key: manscoring_done_<activeId>) More...
|
|
Service class for tests.
- Author
- Björn Heyser bheys.nosp@m.er@d.nosp@m.ataba.nosp@m.y.de
- Version
- $Id$
Definition at line 12 of file class.ilTestService.php.
◆ __construct()
ilTestService::__construct |
( |
ilObjTest |
$a_object | ) |
|
◆ buildVirtualSequence()
ilTestService::buildVirtualSequence |
( |
ilTestSession |
$testSession | ) |
|
Definition at line 179 of file class.ilTestService.php.
References $ilDB, $lng, ilTestSession\getActiveId(), and object.
183 require_once
'Modules/Test/classes/class.ilTestVirtualSequence.php';
186 if ($this->
object->isRandomTest()) {
187 require_once
'Modules/Test/classes/class.ilTestVirtualSequenceRandomQuestionSet.php';
190 require_once
'Modules/Test/classes/class.ilTestVirtualSequence.php';
194 $virtualSequence->setActiveId($testSession->
getActiveId());
196 $virtualSequence->init();
198 return $virtualSequence;
Create new PHPExcel object
obj_idprivate
◆ getManScoringQuestionGuiList()
ilTestService::getManScoringQuestionGuiList |
( |
|
$activeId, |
|
|
|
$pass |
|
) |
| |
Returns the list of answers of a users test pass and offers a scoring option.
public
- Parameters
-
integer | $active_id | Active ID of the active user |
integer | $pass | Test pass |
- Returns
- string HTML code of the list of answers
Definition at line 119 of file class.ilTestService.php.
References $pass, ilObjAssessmentFolder\_getManualScoring(), and array.
121 include_once
"./Modules/Test/classes/class.ilObjAssessmentFolder.php";
124 $testResultData = $this->
object->getTestResult($activeId,
$pass);
126 $manScoringQuestionGuiList =
array();
128 foreach ($testResultData as $questionData) {
129 if (!isset($questionData[
'qid'])) {
133 if (!isset($questionData[
'type'])) {
137 $questionGUI = $this->
object->createQuestionGUI(
"", $questionData[
'qid']);
139 if (!in_array($questionGUI->object->getQuestionTypeID(), $manScoringQuestionTypes)) {
143 $manScoringQuestionGuiList[ $questionData[
'qid'] ] = $questionGUI;
146 return $manScoringQuestionGuiList;
Base Exception for all Exceptions relating to Modules/Test.
Create styles array
The data for the language used.
static _getManualScoring()
Retrieve the manual scoring settings.
◆ getPassOverviewData()
ilTestService::getPassOverviewData |
( |
|
$active_id, |
|
|
|
$short = false |
|
) |
| |
public ilObjUser $ilUser
- Parameters
-
integer | $active_id | |
boolean | $short | |
- Returns
- array $passOverwiewData
Definition at line 36 of file class.ilTestService.php.
References $ilUser, $pass, ilObjTest\_getPass(), array, and ilObjTest\lookupPassResultsUpdateTimestamp().
38 $passOverwiewData =
array();
42 $scoredPass = $this->
object->_getResultPass($active_id);
46 $testReachedPoints = 0;
52 if ($passFinishDate <= 0) {
57 $resultData =&$this->
object->getTestResult($active_id,
$pass);
59 if (!$resultData[
"pass"][
"total_max_points"]) {
62 $passPercentage = ($resultData[
"pass"][
"total_reached_points"]/$resultData[
"pass"][
"total_max_points"])*100;
65 $passMaxPoints = $resultData[
"pass"][
"total_max_points"];
66 $passReachedPoints = $resultData[
"pass"][
"total_reached_points"];
68 $passAnsweredQuestions = $this->
object->getAnsweredQuestionCount($active_id,
$pass);
69 $passTotalQuestions = count($resultData) - 2;
71 if (
$pass == $scoredPass) {
74 if (!$resultData[
"test"][
"total_max_points"]) {
77 $testPercentage = ($resultData[
"test"][
"total_reached_points"]/$resultData[
"test"][
"total_max_points"])*100;
80 $testMaxPoints = $resultData[
"test"][
"total_max_points"];
81 $testReachedPoints = $resultData[
"test"][
"total_reached_points"];
83 $passOverwiewData[
'test'] =
array(
84 'active_id' => $active_id,
85 'scored_pass' => $scoredPass,
86 'max_points' => $testMaxPoints,
87 'reached_points' => $testReachedPoints,
88 'percentage' => $testPercentage
91 $isScoredPass =
false;
94 $passOverwiewData[
'passes'][] =
array(
95 'active_id' => $active_id,
97 'finishdate' => $passFinishDate,
98 'max_points' => $passMaxPoints,
99 'reached_points' => $passReachedPoints,
100 'percentage' => $passPercentage,
101 'answered_questions' => $passAnsweredQuestions,
102 'total_questions' => $passTotalQuestions,
103 'is_scored_pass' => $isScoredPass
108 return $passOverwiewData;
static _getPass($active_id)
Retrieves the actual pass of a given user for a given test.
static lookupPassResultsUpdateTimestamp($active_id, $pass)
Create styles array
The data for the language used.
◆ getQuestionSummaryData()
- Parameters
-
- Returns
- array
Definition at line 241 of file class.ilTestService.php.
References $data, $description, $key, ilObjTest\_getSolvedQuestions(), array, ilTestSequenceSummaryProvider\getActiveId(), ilTestSequenceSummaryProvider\getSequenceSummary(), and object.
245 $marked_questions =
array();
247 if ($this->
object->getShowMarker()) {
248 include_once
"./Modules/Test/classes/class.ilObjTest.php";
254 foreach ($result_array as
$key => $value) {
256 if ($this->
object->getListOfQuestionsDescription()) {
261 if (!$this->
object->getTitleOutput()) {
262 $points = $value[
"points"];
266 if (count($marked_questions)) {
267 if (array_key_exists($value[
"qid"], $marked_questions)) {
268 $obj = $marked_questions[$value[
"qid"]];
269 if ($obj[
"solved"] == 1) {
276 $data[] =
array(
'order' => $value[
"nr"],
'title' => $this->
object->getQuestionTitle($value[
"title"], $value[
"nr"]),
'description' =>
$description,
'worked_through' => $value[
"worked_through"],
'postponed' => $value[
"postponed"],
'points' => $points,
'marked' => $marked,
'sequence' => $value[
"sequence"],
'obligatory' => $value[
'obligatory'],
'isAnswered' => $value[
'isAnswered']);
getSequenceSummary($obligationsFilterEnabled=false)
static _getSolvedQuestions($active_id, $question_fi=null)
get solved questions
Create styles array
The data for the language used.
Create new PHPExcel object
obj_idprivate
◆ getVirtualSequenceUserResults()
◆ isManScoringDone()
static ilTestService::isManScoringDone |
( |
|
$activeId | ) |
|
|
static |
reads the flag wether manscoring is done for the given test active or not from the global settings (scope: assessment / key: manscoring_done_<activeId>)
public
- Parameters
-
- Returns
- boolean $manScoringDone
Definition at line 158 of file class.ilTestService.php.
Referenced by ilTestScoringGUI\buildManScoringParticipantForm().
160 $assessmentSetting =
new ilSetting(
"assessment");
161 return $assessmentSetting->get(
"manscoring_done_" . $activeId,
false);
◆ setManScoringDone()
static ilTestService::setManScoringDone |
( |
|
$activeId, |
|
|
|
$manScoringDone |
|
) |
| |
|
static |
stores the flag wether manscoring is done for the given test active or not within the global settings (scope: assessment / key: manscoring_done_<activeId>)
public
- Parameters
-
integer | $activeId | |
boolean | $manScoringDone | |
Definition at line 173 of file class.ilTestService.php.
Referenced by ilTestScoringGUI\saveManScoringParticipantScreen().
175 $assessmentSetting =
new ilSetting(
"assessment");
176 $assessmentSetting->set(
"manscoring_done_" . $activeId, (
bool) $manScoringDone);
◆ $object
ilTestService::$object = null |
|
protected |
The documentation for this class was generated from the following file: