ILIAS
trunk Revision v11.0_alpha-1769-g99a433fe2dc
◀ 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
BasicProperties.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
21
namespace
ILIAS\MetaData\Search\Clauses\Properties
;
22
23
use
ILIAS\MetaData\Paths\PathInterface
;
24
use
ILIAS\MetaData\Search\Clauses\Mode
;
25
26
class
BasicProperties
implements
BasicPropertiesInterface
27
{
28
protected
PathInterface
$path
;
29
protected
Mode
$mode
;
30
protected
bool
$is_mode_negated
;
31
protected
string
$value
;
32
33
public
function
__construct
(
34
PathInterface
$path,
35
Mode
$mode,
36
string
$value,
37
bool
$is_mode_negated,
38
) {
39
$this->
path
=
$path
;
40
$this->
mode
=
$mode
;
41
$this->
value
=
$value
;
42
$this->is_mode_negated =
$is_mode_negated
;
43
}
44
45
public
function
path
():
PathInterface
46
{
47
return
$this->path
;
48
}
49
50
public
function
mode
():
Mode
51
{
52
return
$this->mode
;
53
}
54
55
public
function
isModeNegated
(): bool
56
{
57
return
$this->is_mode_negated
;
58
}
59
60
public
function
value
(): string
61
{
62
return
$this->value
;
63
}
64
}
ILIAS\MetaData\Search\Clauses\Properties\BasicProperties\value
value()
Definition:
BasicProperties.php:60
ILIAS\MetaData\Search\Clauses\Properties\BasicProperties\isModeNegated
isModeNegated()
Definition:
BasicProperties.php:55
ILIAS\MetaData\Paths\PathInterface
Definition:
PathInterface.php:25
ILIAS\MetaData\Search\Clauses\Properties\BasicProperties\path
path()
Definition:
BasicProperties.php:45
ILIAS\MetaData\Search\Clauses\Properties\BasicProperties\$path
PathInterface $path
Definition:
BasicProperties.php:28
ILIAS\MetaData\Search\Clauses\Properties\BasicProperties\$mode
Mode $mode
Definition:
BasicProperties.php:29
ILIAS\MetaData\Search\Clauses\Properties\BasicProperties\__construct
__construct(PathInterface $path, Mode $mode, string $value, bool $is_mode_negated,)
Definition:
BasicProperties.php:33
ILIAS\MetaData\Search\Clauses\Properties
Definition:
BasicProperties.php:21
ILIAS\MetaData\Search\Clauses\Properties\BasicProperties\mode
mode()
Definition:
BasicProperties.php:50
ILIAS\MetaData\Search\Clauses\Properties\BasicPropertiesInterface
Definition:
BasicPropertiesInterface.php:26
PathInterface
ILIAS\MetaData\Search\Clauses\Properties\BasicProperties
Definition:
BasicProperties.php:26
ILIAS\MetaData\Search\Clauses\Properties\BasicProperties\$value
string $value
Definition:
BasicProperties.php:31
ILIAS\MetaData\Search\Clauses\Properties\BasicProperties\$is_mode_negated
bool $is_mode_negated
Definition:
BasicProperties.php:30
ILIAS\MetaData\Search\Clauses\Mode
Mode
Definition:
Mode.php:23
components
ILIAS
MetaData
classes
Search
Clauses
Properties
BasicProperties.php
Generated on Sun Apr 13 2025 23:03:23 for ILIAS by
1.8.13 (using
Doxyfile
)