ILIAS
trunk Revision v11.0_alpha-2645-g16283d3b3f8
◀ ilDoc Overview
Clause.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
21
namespace
ILIAS\MetaData\Search\Clauses
;
22
23
use
ILIAS\MetaData\Search\Clauses\Properties\JoinPropertiesInterface
;
24
use
ILIAS\MetaData\Search\Clauses\Properties\BasicPropertiesInterface
;
25
26
class
Clause
implements
ClauseInterface
27
{
28
protected
bool
$negated
;
29
protected
bool
$join
;
30
protected
?
JoinPropertiesInterface
$join_properties
;
31
protected
?
BasicPropertiesInterface
$basic_properties
;
32
33
public
function
__construct
(
34
bool
$negated,
35
bool
$join,
36
?
JoinPropertiesInterface
$join_properties,
37
?
BasicPropertiesInterface
$basic_properties
38
) {
39
$this->negated =
$negated
;
40
$this->join =
$join
;
41
$this->join_properties =
$join_properties
;
42
$this->basic_properties =
$basic_properties
;
43
}
44
45
public
function
isNegated
(): bool
46
{
47
return
$this->negated
;
48
}
49
50
public
function
isJoin
(): bool
51
{
52
return
$this->join
;
53
}
54
55
public
function
joinProperties
(): ?
JoinPropertiesInterface
56
{
57
return
$this->join_properties
;
58
}
59
60
public
function
basicProperties
(): ?
BasicPropertiesInterface
61
{
62
return
$this->basic_properties
;
63
}
64
}
ILIAS\MetaData\Search\Clauses\Clause\__construct
__construct(bool $negated, bool $join, ?JoinPropertiesInterface $join_properties, ?BasicPropertiesInterface $basic_properties)
Definition:
Clause.php:33
ILIAS\MetaData\Search\Clauses\Clause\$join
bool $join
Definition:
Clause.php:29
ILIAS\MetaData\Search\Clauses\Clause\$basic_properties
BasicPropertiesInterface $basic_properties
Definition:
Clause.php:31
BasicPropertiesInterface
ILIAS\MetaData\Search\Clauses\Clause\$join_properties
JoinPropertiesInterface $join_properties
Definition:
Clause.php:30
ILIAS\MetaData\Search\Clauses\Clause\isNegated
isNegated()
Definition:
Clause.php:45
ILIAS\MetaData\Search\Clauses\Clause\isJoin
isJoin()
Definition:
Clause.php:50
ILIAS\MetaData\Search\Clauses\Clause\$negated
bool $negated
Definition:
Clause.php:28
ILIAS\MetaData\Search\Clauses\Properties\JoinPropertiesInterface
Definition:
JoinPropertiesInterface.php:26
ILIAS\MetaData\Search\Clauses\Clause\joinProperties
joinProperties()
Definition:
Clause.php:55
ILIAS\MetaData\Search\Clauses
Definition:
Clause.php:21
ILIAS\MetaData\Search\Clauses\Properties\BasicPropertiesInterface
Definition:
BasicPropertiesInterface.php:26
ILIAS\MetaData\Search\Clauses\ClauseInterface
Definition:
ClauseInterface.php:26
ILIAS\MetaData\Search\Clauses\Clause
Definition:
Clause.php:26
ILIAS\MetaData\Search\Clauses\Clause\basicProperties
basicProperties()
Definition:
Clause.php:60
JoinPropertiesInterface
components
ILIAS
MetaData
classes
Search
Clauses
Clause.php
Generated on Mon Sep 1 2025 23:03:32 for ILIAS by
1.8.13 (using
Doxyfile
)