ILIAS
trunk Revision v11.0_alpha-2645-g16283d3b3f8
◀ ilDoc Overview
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 Mon Sep 1 2025 23:03:32 for ILIAS by
1.8.13 (using
Doxyfile
)