ILIAS  release_5-3 Revision v5.3.23-19-g915713cf615
ilAssLacAnswerValueNotExist Class Reference
+ Inheritance diagram for ilAssLacAnswerValueNotExist:
+ Collaboration diagram for ilAssLacAnswerValueNotExist:

Public Member Functions

 __construct ($question_index, $value, $answer_index=null)
 
 getQuestionIndex ()
 
 getAnswerIndex ()
 
 getValue ()
 
 getFormAlert (ilLanguage $lng)
 
- Public Member Functions inherited from ilException
 __construct ($a_message, $a_code=0)
 A message isn't optional as in build in class Exception. More...
 

Protected Attributes

 $question_index
 
 $value
 
 $answer_index
 

Detailed Description

Definition at line 15 of file ilAssLacAnswerValueNotExist.php.

Constructor & Destructor Documentation

◆ __construct()

ilAssLacAnswerValueNotExist::__construct (   $question_index,
  $value,
  $answer_index = null 
)
Parameters
int$question_index
string$value
int$answer_index

Definition at line 37 of file ilAssLacAnswerValueNotExist.php.

References $answer_index, $question_index, $value, getAnswerIndex(), and getQuestionIndex().

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  }
+ Here is the call graph for this function:

Member Function Documentation

◆ getAnswerIndex()

ilAssLacAnswerValueNotExist::getAnswerIndex ( )
Returns
int

Definition at line 83 of file ilAssLacAnswerValueNotExist.php.

References $answer_index.

Referenced by __construct(), and getFormAlert().

+ Here is the caller graph for this function:

◆ getFormAlert()

ilAssLacAnswerValueNotExist::getFormAlert ( ilLanguage  $lng)
Parameters
ilLanguage$lng
Returns
string

Implements ilAssLacFormAlertProvider.

Definition at line 100 of file ilAssLacAnswerValueNotExist.php.

References getAnswerIndex(), getQuestionIndex(), getValue(), and ilLanguage\txt().

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  }
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...
+ Here is the call graph for this function:

◆ getQuestionIndex()

ilAssLacAnswerValueNotExist::getQuestionIndex ( )
Returns
int

Definition at line 75 of file ilAssLacAnswerValueNotExist.php.

References $question_index.

Referenced by __construct(), and getFormAlert().

+ Here is the caller graph for this function:

◆ getValue()

ilAssLacAnswerValueNotExist::getValue ( )
Returns
string

Definition at line 91 of file ilAssLacAnswerValueNotExist.php.

References $value.

Referenced by getFormAlert().

+ Here is the caller graph for this function:

Field Documentation

◆ $answer_index

ilAssLacAnswerValueNotExist::$answer_index
protected

Definition at line 30 of file ilAssLacAnswerValueNotExist.php.

Referenced by __construct(), and getAnswerIndex().

◆ $question_index

ilAssLacAnswerValueNotExist::$question_index
protected

Definition at line 20 of file ilAssLacAnswerValueNotExist.php.

Referenced by __construct(), and getQuestionIndex().

◆ $value

ilAssLacAnswerValueNotExist::$value
protected

Definition at line 25 of file ilAssLacAnswerValueNotExist.php.

Referenced by __construct(), and getValue().


The documentation for this class was generated from the following file: