ILIAS  release_5-3 Revision v5.3.23-19-g915713cf615
ilAssLacAnswerValueNotExist.php
Go to the documentation of this file.
1<?php
2
3require_once 'Modules/TestQuestionPool/classes/questions/LogicalAnswerCompare/Exception/ilAssLacException.php';
4require_once 'Modules/TestQuestionPool/classes/questions/LogicalAnswerCompare/Exception/ilAssLacFormAlertProvider.php';
5
16{
20 protected $question_index;
21
25 protected $value;
26
30 protected $answer_index;
31
38 {
39 $this->question_index = $question_index;
40 $this->answer_index = $answer_index;
41 $this->value = $value;
42
43 if ($this->getQuestionIndex() === null && $this->getAnswerIndex() === null) {
44 $msg = sprintf(
45 'The value "%s" does not exist for the current question',
46 $value
47 );
48 } elseif ($this->getQuestionIndex() === null) {
49 $msg = sprintf(
50 'The value "%s" does not exist for the answer with index "%s" of the current question',
51 $value,
52 $this->getAnswerIndex()
53 );
54 } elseif ($this->getAnswerIndex() === null) {
55 $msg = sprintf(
56 'The value "%s" does not exist for the question Q%s',
57 $value,
58 $this->getQuestionIndex()
59 );
60 } else {
61 $msg = sprintf(
62 'The value "%s" does not exist for the question Q%s[%s]',
63 $value,
64 $this->getQuestionIndex(),
65 $this->getAnswerIndex()
66 );
67 }
68
69 parent::__construct($msg);
70 }
71
75 public function getQuestionIndex()
76 {
78 }
79
83 public function getAnswerIndex()
84 {
86 }
87
91 public function getValue()
92 {
93 return $this->value;
94 }
95
100 public function getFormAlert(ilLanguage $lng)
101 {
102 if ($this->getQuestionIndex() === null && $this->getAnswerIndex() === null) {
103 return sprintf(
104 $lng->txt("ass_lac_answer_value_not_exists_cur_qst_one_answer"),
105 $this->getValue()
106 );
107 }
108
109 if ($this->getQuestionIndex() === null) {
110 return sprintf(
111 $lng->txt("ass_lac_answer_value_not_exists_cur_qst"),
112 $this->getValue(),
113 $this->getAnswerIndex()
114 );
115 }
116
117 if ($this->getAnswerIndex() === null) {
118 return sprintf(
119 $lng->txt("ass_lac_answer_value_not_exists_one_answer"),
120 $this->getValue(),
121 $this->getQuestionIndex()
122 );
123 }
124
125 return sprintf(
126 $lng->txt("ass_lac_answer_value_not_exists"),
127 $this->getValue(),
128 $this->getQuestionIndex(),
129 $this->getAnswerIndex()
130 );
131 }
132}
sprintf('%.4f', $callTime)
An exception for terminatinating execution or to throw for unit testing.
__construct($question_index, $value, $answer_index=null)
language handling
txt($a_topic, $a_default_lang_fallback_mod="")
gets the text for a given topic if the topic is not in the list, the topic itself with "-" will be re...
global $lng
Definition: privfeed.php:17