ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
ilAssLacMissingBracket.php
Go to the documentation of this file.
1<?php
2
29{
33 protected $bracket;
34
38 public function __construct($bracket)
39 {
40 $this->bracket = $bracket;
41
42 parent::__construct(sprintf(
43 'There is a bracket "%s" missing in the condition',
44 $this->getBracket()
45 ));
46 }
47
51 public function getBracket(): string
52 {
53 return $this->bracket;
54 }
55
60 public function getFormAlert(ilLanguage $lng): string
61 {
62 return sprintf(
63 $lng->txt("ass_lac_missing_bracket"),
64 $this->getBracket()
65 );
66 }
67}
language handling
__construct(Container $dic, ilPlugin $plugin)
@inheritDoc
global $lng
Definition: privfeed.php:31