19 include_once
"./Modules/Test/classes/inc.AssessmentConstants.php";
20 include_once
"./Modules/Test/classes/class.ilTestServiceGUI.php";
78 protected function buildSubTabs($active_sub_tab =
'man_scoring_by_qst')
84 $ilTabs = $DIC[
'ilTabs'];
86 $ilTabs->addSubTab(
'man_scoring_by_qst', $this->
lng->txt(
'tst_man_scoring_by_qst'), $this->
ctrl->getLinkTargetByClass(
'ilTestScoringByQuestionsGUI',
'showManScoringByQuestionParticipantsTable'));
87 $ilTabs->addSubTab(
'man_scoring', $this->
lng->txt(
'tst_man_scoring_by_part'), $this->
ctrl->getLinkTargetByClass(
'ilTestScoringGUI',
'showManScoringParticipantsTable'));
88 $ilTabs->setSubTabActive($active_sub_tab);
94 $ilCtrl = $DIC[
'ilCtrl'];
98 if (!$this->testrequest->isset(
'active_id') || !(
int) $this->testrequest->raw(
'active_id')) {
100 $this->tpl->setOnScreenMessage(
'failure',
'no active id given!',
true);
101 $ilCtrl->redirectByClass(
"ilobjtestgui",
"infoScreen");
103 $activeId = (
int) $this->testrequest->raw(
'active_id');
113 $maxPass = $this->
object->_getMaxPass($activeId);
114 if ($this->testrequest->isset(
"pass") && 0 <= (
int) $this->testrequest->raw(
"pass") && $maxPass >= (
int) $this->testrequest->raw(
"pass")) {
115 $pass = $this->testrequest->raw(
"pass");
119 $pass = $this->
object->_getResultPass($activeId);
132 if (!$this->
getTestAccess()->checkScoreParticipantsAccess()) {
136 require_once
'Modules/Test/classes/class.ilObjAssessmentFolder.php';
139 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
"manscoring_not_allowed"),
true);
140 $this->
ctrl->redirectByClass(
"ilobjtestgui",
"infoScreen");
146 $nextClass = $this->
ctrl->getNextClass($this);
149 switch ($nextClass) {
169 return 'man_scoring';
179 $tpl->setContent($table->getHTML());
186 $table->resetOffset();
187 $table->writeFilterToSession();
196 $table->resetOffset();
197 $table->resetFilter();
210 if (!$this->
getTestAccess()->checkScoreParticipantsAccessForActiveId($activeId)) {
219 require_once
'Modules/Test/classes/tables/class.ilTestPassManualScoringOverviewTableGUI.php';
222 $userId = $this->
object->_getUserIdFromActiveId($activeId);
223 $userFullname = $this->
object->userLookupFullName($userId,
false,
true);
224 $tableTitle = sprintf(
$lng->txt(
'tst_pass_overview_for_participant'), $userFullname);
225 $table->setTitle($tableTitle);
227 $passOverviewData = $this->service->getPassOverviewData($activeId);
228 $table->setData($passOverviewData[
'passes']);
230 $contentHTML .= $table->getHTML() .
'<br />';
234 if ($form === null) {
235 $questionGuiList = $this->service->getManScoringQuestionGuiList($activeId, $pass);
239 $contentHTML .= $form->getHTML();
243 $tpl->setContent($contentHTML);
253 $ilCtrl = $DIC[
'ilCtrl'];
258 if (!$this->
getTestAccess()->checkScoreParticipantsAccessForActiveId($activeId)) {
264 $questionGuiList = $this->service->getManScoringQuestionGuiList($activeId, $pass);
267 $form->setValuesByPost();
269 if (!$form->checkInput()) {
270 $this->tpl->setOnScreenMessage(
'failure', sprintf(
$lng->txt(
'tst_save_manscoring_failed'), $pass + 1));
275 include_once
"./Modules/TestQuestionPool/classes/class.assQuestion.php";
277 $maxPointsByQuestionId = array();
278 $maxPointsExceeded =
false;
279 foreach ($questionGuiList as $questionId => $questionGui) {
280 $reachedPoints = $form->getItemByPostVar(
"question__{$questionId}__points")->getValue();
283 if ($reachedPoints > $maxPoints) {
284 $maxPointsExceeded =
true;
286 $form->getItemByPostVar(
"question__{$questionId}__points")->setAlert(sprintf(
287 $lng->txt(
'tst_manscoring_maxpoints_exceeded_input_alert'),
292 $maxPointsByQuestionId[$questionId] = $maxPoints;
295 if ($maxPointsExceeded) {
296 $this->tpl->setOnScreenMessage(
'failure', sprintf(
$lng->txt(
'tst_save_manscoring_failed'), $pass + 1));
301 include_once
"./Services/AdvancedEditing/classes/class.ilObjAdvancedEditing.php";
303 foreach ($questionGuiList as $questionId => $questionGui) {
304 $reachedPoints = $form->getItemByPostVar(
"question__{$questionId}__points")->getValue();
306 $finalized = (bool) $form->getItemByPostVar(
"{$questionId}__evaluated")->getchecked();
311 if ($reachedPoints != $oldPoints) {
316 $maxPointsByQuestionId[$questionId],
319 $this->
object->areObligationsEnabled()
324 (
string) $form->getItemByPostVar(
"question__{$questionId}__feedback")->getValue(),
329 $this->
object->saveManualFeedback($activeId, (
int) $questionId, (
int) $pass, $feedback, $finalized,
true);
331 $notificationData[$questionId] = array(
332 'points' => $reachedPoints,
'feedback' => $feedback
336 include_once
"./Modules/Test/classes/class.ilObjTestAccess.php";
337 include_once(
"./Services/Tracking/classes/class.ilLPStatusWrapper.php");
343 $manScoringDone = $form->getItemByPostVar(
"manscoring_done")->getChecked();
346 $manScoringNotify = $form->getItemByPostVar(
"manscoring_notify")->getChecked();
347 if ($manScoringNotify) {
348 require_once
'Modules/Test/classes/notifications/class.ilTestManScoringParticipantNotification.php';
351 $this->
object->_getUserIdFromActiveId($activeId),
352 $this->
object->getRefId()
356 'test_title' => $this->
object->getTitle(),
357 'test_pass' => $pass + 1,
358 'questions_gui_list' => $questionGuiList,
359 'questions_scoring_data' => $notificationData
362 $notification->send();
365 require_once
'./Modules/Test/classes/class.ilTestScoring.php';
367 $scorer->setPreserveManualScores(
true);
368 $scorer->recalculateSolutions();
370 if ($this->
object->getAnonymity() == 0) {
372 $name_real_or_anon = $user_name[
'firstname'] .
' ' . $user_name[
'lastname'];
374 $name_real_or_anon =
$lng->txt(
'anonymous');
376 $this->tpl->setOnScreenMessage(
'success', sprintf(
$lng->txt(
'tst_saved_manscoring_successfully'), $pass + 1, $name_real_or_anon),
true);
377 if ($redirect ==
true) {
378 $ilCtrl->redirect($this,
'showManScoringParticipantScreen');
386 $ilCtrl = $DIC[
'ilCtrl'];
395 if ($participant[
'active_id'] == $this->testrequest->raw(
'active_id')) {
402 $ilCtrl->setParameter($this,
'active_id',
$participantData[$nextIndex][
'active_id']);
403 $ilCtrl->redirect($this,
'showManScoringParticipantScreen');
406 $ilCtrl->redirectByClass(
"iltestscoringgui",
"showManScoringParticipantsTable");
413 $ilCtrl = $DIC[
'ilCtrl'];
416 $ilCtrl->redirectByClass(
"iltestscoringgui",
"showManScoringParticipantsTable");
423 $ilCtrl = $DIC[
'ilCtrl'];
426 require_once
'Services/Form/classes/class.ilPropertyFormGUI.php';
427 require_once
'Services/Form/classes/class.ilFormSectionHeaderGUI.php';
428 require_once
'Services/Form/classes/class.ilCustomInputGUI.php';
429 require_once
'Services/Form/classes/class.ilCheckboxInputGUI.php';
430 require_once
'Services/Form/classes/class.ilTextInputGUI.php';
431 require_once
'Services/Form/classes/class.ilTextAreaInputGUI.php';
433 $ilCtrl->setParameter($this,
'active_id', $activeId);
434 $ilCtrl->setParameter($this,
'pass', $pass);
437 $form->setFormAction($ilCtrl->getFormAction($this));
439 $form->setTitle(sprintf(
$lng->txt(
'manscoring_results_pass'), $pass + 1));
440 $form->setTableWidth(
'100%');
442 foreach ($questionGuiList as $questionId => $questionGUI) {
443 $questionHeader = sprintf(
$lng->txt(
'tst_manscoring_question_section_header'), $questionGUI->object->getTitleForHTMLOutput());
444 $questionSolution = $questionGUI->getSolutionOutput($activeId, $pass,
false,
false,
true,
false,
false,
true);
445 $bestSolution = $questionGUI->object->getSuggestedSolutionOutput();
447 $feedback = $this->
object->getSingleManualFeedback($activeId, $questionId, $pass);
450 if (isset($feedback[
'finalized_evaluation']) && $feedback[
'finalized_evaluation'] == 1) {
455 $sect->setTitle($questionHeader .
' [' . $this->
lng->txt(
'question_id_short') .
': ' . $questionGUI->object->getId() .
']');
456 $form->addItem($sect);
459 $cust->
setHtml($questionSolution);
460 $form->addItem($cust);
463 $aresult_output = $questionGUI->getAutoSavedSolutionOutput(
475 $cust->
setHtml($aresult_output);
476 $form->addItem($cust);
479 $text =
new ilTextInputGUI($this->
lng->txt(
'tst_change_points_for_question'),
"question__{$questionId}__points");
484 $text->setDisabled($disabled);
486 $form->addItem($text);
488 $nonedit =
new ilNonEditableValueGUI(
$lng->txt(
'tst_manscoring_input_max_points_for_question'),
"question__{$questionId}__maxpoints");
492 $form->addItem($nonedit);
495 $area->setUseRTE(
true);
500 $area->setDisabled($disabled);
502 $form->addItem($area);
510 if (strlen(trim($bestSolution))) {
513 $form->addItem($cust);
518 $sect->setTitle(
$lng->txt(
'tst_participant'));
519 $form->addItem($sect);
530 $form->addCommandButton(
'saveManScoringParticipantScreen',
$lng->txt(
'save'));
531 $form->addCommandButton(
'saveReturnManScoringParticipantScreen',
$lng->txt(
'save_return'));
532 $form->addCommandButton(
'saveNextManScoringParticipantScreen',
$lng->txt(
'save_and_next'));
546 require_once
'Modules/Test/classes/tables/class.ilTestManScoringParticipantsTableGUI.php';
550 $participantStatusFilterValue = $table->getFilterItemByPostVar(
'participant_status')->getValue();
552 require_once
'Modules/Test/classes/class.ilTestParticipantList.php';
555 $participant_list->initializeFromDbRows(
556 $this->
object->getTestParticipantsForManualScoring($participantStatusFilterValue)
559 $filtered_participant_list = $participant_list->getAccessFilteredList(
563 $table->setData($filtered_participant_list->getParticipantsTableRows());
showManScoringParticipantScreen(ilPropertyFormGUI $form=null)
static setManScoringDone($activeId, $manScoringDone)
stores the flag wether manscoring is done for the given test active or not within the global settings...
static _getParticipantId($active_id)
Get user id for active id.
static stripSlashes(string $a_str, bool $a_strip_html=true, string $a_allow="")
const TAB_ID_MANUAL_SCORING
static _lookupName(int $a_user_id)
lookup user name
applyManScoringParticipantsFilter()
static isManScoringDone($activeId)
reads the flag wether manscoring is done for the given test active or not from the global settings (s...
__construct(ilObjTest $a_object)
ilTestScoringGUI constructor
const PART_FILTER_ACTIVE_ONLY
fetchPassParameter($activeId)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
saveReturnManScoringParticipantScreen()
setTestAccess($testAccess)
executeCommand()
execute command
static accessViolationRedirect()
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
setValue(string $a_value)
const PART_FILTER_MANSCORING_NONE
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static getSingleManualFeedback(int $active_id, int $question_id, int $pass)
static _getReachedPoints(int $active_id, int $question_id, int $pass)
static _mananuallyScoreableQuestionTypesExists()
Returns the fact wether manually scoreable question types exist or not.
buildManScoringParticipantForm($questionGuiList, $activeId, $pass, $initValues=false)
showManScoringParticipantsTable()
static _setReachedPoints(int $active_id, int $question_id, float $points, float $maxpoints, int $pass, bool $manualscoring, bool $obligationsEnabled)
Sets the points, a learner has reached answering the question Additionally objective results are upda...
static _getUsedHTMLTagsAsString(string $a_module="")
Returns a string of all allowed HTML tags for text editing.
saveManScoringParticipantScreen($redirect=true)
buildManScoringParticipantsTable($withData=false)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
const PART_FILTER_ALL_USERS
const PART_FILTER_INACTIVE_ONLY
static _getMaximumPoints(int $question_id)
Returns the maximum points, a learner can reach answering the question.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static getScoreParticipantsUserFilter($refId)
__construct(Container $dic, ilPlugin $plugin)
This class represents a text area property in a property form.
resetManScoringParticipantsFilter()
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Service GUI class for tests.
sendManScoringParticipantNotification()
saveNextManScoringParticipantScreen()
setAdditionalInformation(array $a_info)
const PART_FILTER_MANSCORING_DONE
static _updateStatus(int $a_obj_id, int $a_usr_id, ?object $a_obj=null, bool $a_percentage=false, bool $a_force_raise=false)