ILIAS
trunk Revision v11.0_alpha-1715-g7fc467680fb
◀ 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
JoinProperties.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\Search\Clauses\Operator
;
24
use
ILIAS\MetaData\Search\Clauses\ClauseInterface
;
25
26
class
JoinProperties
implements
JoinPropertiesInterface
27
{
31
protected
array
$sub_clauses
;
32
protected
Operator
$operator
;
33
34
public
function
__construct
(
35
Operator
$operator,
36
ClauseInterface
$first_clause,
37
ClauseInterface
$second_clause,
38
ClauseInterface
...$further_clauses
39
) {
40
$this->
operator
=
$operator
;
41
$this->sub_clauses = [
42
$first_clause,
43
$second_clause,
44
...$further_clauses
45
];
46
}
47
48
public
function
operator
():
Operator
49
{
50
return
$this->operator
;
51
}
52
56
public
function
subClauses
(): \
Generator
57
{
58
yield
from
$this->sub_clauses
;
59
}
60
}
ILIAS\MetaData\Search\Clauses\Properties\JoinProperties
Definition:
JoinProperties.php:26
ILIAS\MetaData\Search\Clauses\Properties\JoinProperties\__construct
__construct(Operator $operator, ClauseInterface $first_clause, ClauseInterface $second_clause, ClauseInterface ... $further_clauses)
Definition:
JoinProperties.php:34
ILIAS\MetaData\Search\Clauses\Properties\JoinProperties\subClauses
subClauses()
Definition:
JoinProperties.php:56
ClauseInterface
ILIAS\MetaData\Search\Clauses\Properties\JoinPropertiesInterface
Definition:
JoinPropertiesInterface.php:26
ILIAS\MetaData\Search\Clauses\Properties
Definition:
BasicProperties.php:21
Generator
ILIAS\MetaData\Search\Clauses\ClauseInterface
Definition:
ClauseInterface.php:26
ILIAS\ResourceStorage\Flavour\Machine\DefaultMachines\from
from(FileStream $stream)
Definition:
GdImageToStreamTrait.php:48
ILIAS\MetaData\Search\Clauses\Properties\JoinProperties\$sub_clauses
array $sub_clauses
Definition:
JoinProperties.php:31
ILIAS\MetaData\Search\Clauses\Properties\JoinProperties\operator
operator()
Definition:
JoinProperties.php:48
ILIAS\MetaData\Search\Clauses\Properties\JoinProperties\$operator
Operator $operator
Definition:
JoinProperties.php:32
ILIAS\MetaData\Search\Clauses\Operator
Operator
Definition:
Operator.php:23
components
ILIAS
MetaData
classes
Search
Clauses
Properties
JoinProperties.php
Generated on Sat Apr 5 2025 23:03:39 for ILIAS by
1.8.13 (using
Doxyfile
)