ILIAS
release_6 Revision v6.24-5-g0c8bfefb3b8
◀ ilDoc Overview
Main Page
Related Pages
Modules
+
Namespaces
Namespace List
+
Namespace Members
+
All
$
_
a
b
c
d
e
f
g
h
i
j
l
m
p
s
t
w
+
Functions
_
a
b
c
f
g
h
i
s
t
w
+
Variables
$
c
d
e
f
g
h
j
l
m
p
s
t
+
Data Structures
Data Structures
Data Structure Index
Class Hierarchy
+
Data Fields
+
All
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Variables
$
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Files
File List
+
Globals
+
All
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
+
Functions
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
w
x
+
Variables
$
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Examples
•
All
Data Structures
Namespaces
Files
Functions
Variables
Modules
Pages
ilAssLacOperatorNotSupportedByExpression.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
15
class
ilAssLacOperatorNotSupportedByExpression
extends
ilAssLacException
implements
ilAssLacFormAlertProvider
16
{
20
protected
$operator
;
21
25
protected
$expression
;
26
31
public
function
__construct
(
$expression
,
$operator
)
32
{
33
$this->expression =
$expression
;
34
$this->
operator
=
$operator
;
35
36
parent::__construct
(sprintf(
37
'The expression "%s" is not supported by the operator "%s"'
,
38
$this->
getExpression
(),
39
$this->
getOperator
()
40
));
41
}
42
46
public
function
getExpression
()
47
{
48
return
$this->expression
;
49
}
50
54
public
function
getOperator
()
55
{
56
return
$this->operator
;
57
}
58
63
public
function
getFormAlert
(
ilLanguage
$lng
)
64
{
65
return
sprintf(
66
$lng->
txt
(
"ass_lac_operator_not_supported_by_expression"
),
67
$this->
getOperator
(),
68
$this->
getExpression
()
69
);
70
}
71
}
ilAssLacOperatorNotSupportedByExpression
Definition:
ilAssLacOperatorNotSupportedByExpression.php:15
ilAssLacOperatorNotSupportedByExpression\__construct
__construct($expression, $operator)
Definition:
ilAssLacOperatorNotSupportedByExpression.php:31
ilAssLacOperatorNotSupportedByExpression\getOperator
getOperator()
Definition:
ilAssLacOperatorNotSupportedByExpression.php:54
ilAssLacFormAlertProvider
Definition:
ilAssLacFormAlertProvider.php:10
$lng
$lng
Definition:
save_question_post_data.php:23
ilAssLacOperatorNotSupportedByExpression\$expression
$expression
Definition:
ilAssLacOperatorNotSupportedByExpression.php:25
ilAssLacOperatorNotSupportedByExpression\getExpression
getExpression()
Definition:
ilAssLacOperatorNotSupportedByExpression.php:46
ilAssLacOperatorNotSupportedByExpression\$operator
$operator
Definition:
ilAssLacOperatorNotSupportedByExpression.php:20
ILIAS\GlobalScreen\Provider\__construct
__construct(Container $dic, ilPlugin $plugin)
Definition:
PluginProviderHelper.php:30
ilLanguage
language handling
Definition:
class.ilLanguage.php:26
ilAssLacOperatorNotSupportedByExpression\getFormAlert
getFormAlert(ilLanguage $lng)
Definition:
ilAssLacOperatorNotSupportedByExpression.php:63
ilLanguage\txt
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...
Definition:
class.ilLanguage.php:237
ilAssLacException
Definition:
ilAssLacException.php:12
Modules
TestQuestionPool
classes
questions
LogicalAnswerCompare
Exception
ilAssLacOperatorNotSupportedByExpression.php
Generated on Sat Apr 5 2025 20:01:13 for ILIAS by
1.8.13 (using
Doxyfile
)