ILIAS  release_5-4 Revision v5.4.26-12-gabc799a52e6
ilAssLacUnableToParseCondition.php
Go to the documentation of this file.
1 <?php
2 
3 require_once 'Modules/TestQuestionPool/classes/questions/LogicalAnswerCompare/Exception/ilAssLacException.php';
4 require_once 'Modules/TestQuestionPool/classes/questions/LogicalAnswerCompare/Exception/ilAssLacFormAlertProvider.php';
5 
16 {
20  protected $condition;
21 
22 
27  public function __construct($condition)
28  {
29  $this->condition = $condition;
30 
31  parent::__construct(sprintf(
32  'The parser is unable to parse the condition "%s"',
33  $this->getCondition()
34  ));
35  }
36 
40  public function getCondition()
41  {
42  return $this->condition;
43  }
44 
49  public function getFormAlert(ilLanguage $lng)
50  {
51  return sprintf(
52  $lng->txt("ass_lac_unable_to_parse_condition"),
53  $this->getCondition()
54  );
55  }
56 }
$lng
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...