ILIAS  release_5-1 Revision 5.0.0-5477-g43f3e3fab5f
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 {
45 $msg = sprintf(
46 'The value "%s" does not exist for the current question', $value
47 );
48 }
49 elseif( $this->getQuestionIndex() === null )
50 {
51 $msg = sprintf(
52 'The value "%s" does not exist for the answer with index "%s" of the current question',
53 $value, $this->getAnswerIndex()
54 );
55 }
56 elseif( $this->getAnswerIndex() === null )
57 {
58 $msg = sprintf(
59 'The value "%s" does not exist for the question Q%s',
60 $value, $this->getQuestionIndex()
61 );
62 }
63 else
64 {
65 $msg = sprintf(
66 'The value "%s" does not exist for the question Q%s[%s]',
67 $value, $this->getQuestionIndex(), $this->getAnswerIndex()
68 );
69 }
70
71 parent::__construct($msg);
72 }
73
77 public function getQuestionIndex()
78 {
80 }
81
85 public function getAnswerIndex()
86 {
88 }
89
93 public function getValue()
94 {
95 return $this->value;
96 }
97
102 public function getFormAlert(ilLanguage $lng)
103 {
104 if( $this->getQuestionIndex() === null && $this->getAnswerIndex() === null )
105 {
106 return sprintf($lng->txt("ass_lac_answer_value_not_exists_cur_qst_one_answer"), $this->getValue()
107 );
108 }
109
110 if( $this->getQuestionIndex() === null )
111 {
112 return sprintf($lng->txt("ass_lac_answer_value_not_exists_cur_qst"),
113 $this->getValue(), $this->getAnswerIndex()
114 );
115 }
116
117 if( $this->getAnswerIndex() === null )
118 {
119 return sprintf($lng->txt("ass_lac_answer_value_not_exists_one_answer"),
120 $this->getValue(), $this->getQuestionIndex()
121 );
122 }
123
124 return sprintf($lng->txt("ass_lac_answer_value_not_exists"),
125 $this->getValue(), $this->getQuestionIndex(), $this->getAnswerIndex()
126 );
127 }
128}
__construct($question_index, $value, $answer_index=null)
language handling
global $lng
Definition: privfeed.php:40