ILIAS
trunk Revision v11.0_alpha-1713-gd8962da2f67
◀ 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
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 Fri Apr 4 2025 23:03:36 for ILIAS by
1.8.13 (using
Doxyfile
)