ILIAS
trunk Revision v11.0_alpha-1753-gb21ca8c4367
◀ ilDoc Overview
Main Page
Related Pages
Modules
+
Namespaces
Namespace List
+
Namespace Members
+
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
k
l
m
n
o
p
r
s
t
u
v
w
x
+
Variables
$
c
e
g
h
j
l
m
p
s
t
u
v
+
Enumerations
a
c
e
f
i
j
l
m
n
o
p
r
s
t
u
v
z
+
Enumerator
a
c
d
e
f
g
i
l
m
n
o
p
q
s
t
u
v
y
+
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
Ö
Enumerations
Enumerator
+
Files
File List
+
Globals
+
All
$
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
z
+
Functions
a
b
c
d
e
f
g
h
i
m
n
p
r
s
t
u
v
+
Variables
$
a
c
e
g
h
i
m
n
o
p
r
s
t
u
v
z
Enumerations
Enumerator
Examples
•
All
Data Structures
Namespaces
Files
Functions
Variables
Enumerations
Enumerator
Modules
Pages
ilAssLacOperatorNotSupportedByExpression.php
Go to the documentation of this file.
1
<?php
2
28
class
ilAssLacOperatorNotSupportedByExpression
extends
ilAssLacException
implements
ilAssLacFormAlertProvider
29
{
33
protected
$operator
;
34
38
protected
$expression
;
39
44
public
function
__construct
(
$expression
,
$operator
)
45
{
46
$this->expression =
$expression
;
47
$this->
operator
=
$operator
;
48
49
parent::__construct
(sprintf(
50
'The expression "%s" is not supported by the operator "%s"'
,
51
$this->
getExpression
(),
52
$this->
getOperator
()
53
));
54
}
55
59
public
function
getExpression
(): string
60
{
61
return
$this->expression
;
62
}
63
67
public
function
getOperator
(): string
68
{
69
return
$this->operator
;
70
}
71
76
public
function
getFormAlert
(
ilLanguage
$lng
): string
77
{
78
return
sprintf(
79
$lng->
txt
(
"ass_lac_operator_not_supported_by_expression"
),
80
$this->
getOperator
(),
81
$this->
getExpression
()
82
);
83
}
84
}
ilLanguage
ilLanguage\txt
txt(string $a_topic, string $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:170
ilAssLacOperatorNotSupportedByExpression
Definition:
ilAssLacOperatorNotSupportedByExpression.php:28
ilAssLacOperatorNotSupportedByExpression\__construct
__construct($expression, $operator)
Definition:
ilAssLacOperatorNotSupportedByExpression.php:44
ilAssLacOperatorNotSupportedByExpression\getOperator
getOperator()
Definition:
ilAssLacOperatorNotSupportedByExpression.php:67
ilAssLacFormAlertProvider
Definition:
ilAssLacFormAlertProvider.php:25
ilAssLacOperatorNotSupportedByExpression\$expression
$expression
Definition:
ilAssLacOperatorNotSupportedByExpression.php:38
ilAssLacOperatorNotSupportedByExpression\getExpression
getExpression()
Definition:
ilAssLacOperatorNotSupportedByExpression.php:59
ilAssLacOperatorNotSupportedByExpression\$operator
$operator
Definition:
ilAssLacOperatorNotSupportedByExpression.php:33
ILIAS\GlobalScreen\Provider\__construct
__construct(Container $dic, ilPlugin $plugin)
Definition:
PluginProviderHelper.php:37
$lng
global $lng
Definition:
privfeed.php:31
ilAssLacOperatorNotSupportedByExpression\getFormAlert
getFormAlert(ilLanguage $lng)
Definition:
ilAssLacOperatorNotSupportedByExpression.php:76
ilAssLacException
Definition:
ilAssLacException.php:25
components
ILIAS
TestQuestionPool
classes
questions
LogicalAnswerCompare
Exception
ilAssLacOperatorNotSupportedByExpression.php
Generated on Thu Apr 10 2025 23:04:18 for ILIAS by
1.8.13 (using
Doxyfile
)