ILIAS
release_7 Revision v7.30-3-g800a261c036
◀ ilDoc Overview
Main Page
Related Pages
Modules
+
Namespaces
Namespace List
+
Namespace Members
+
All
$
_
a
b
c
d
e
f
g
h
i
j
l
m
p
r
s
t
w
+
Functions
_
a
b
c
f
g
h
i
r
s
t
w
+
Variables
$
c
d
e
f
g
h
j
l
m
p
s
t
+
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
+
Files
File List
+
Globals
+
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
z
+
Functions
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
w
x
+
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
z
Examples
•
All
Data Structures
Namespaces
Files
Functions
Variables
Modules
Pages
BaseComparator.php
Go to the documentation of this file.
1
<?php
2
declare(strict_types=1);
3
4
namespace
ILIAS\Filesystem\Finder\Comparator
;
5
11
abstract
class
BaseComparator
12
{
14
private
$target
=
''
;
15
17
private
$operator =
'=='
;
18
22
public
function
getTarget
() : string
23
{
24
return
$this->target
;
25
}
26
30
public
function
setTarget
(
string
$target
)
31
{
32
$this->target =
$target
;
33
}
34
38
public
function
getOperator
() : string
39
{
40
return
$this->operator;
41
}
42
46
public
function
setOperator
(
string
$operator)
47
{
48
if
(0 === strlen($operator)) {
49
$operator =
'=='
;
50
}
51
52
if
(!in_array($operator, [
'>'
,
'<'
,
'>='
,
'<='
,
'=='
,
'!='
])) {
53
throw
new \InvalidArgumentException(sprintf(
'Invalid operator "%s".'
, $operator));
54
}
55
56
$this->
operator
= $operator;
57
}
58
63
public
function
test
(
string
$test
) : bool
64
{
65
switch
($this->
operator
) {
66
case
'>'
:
67
return
$test >
$this->target
;
68
69
case
'>='
:
70
return
$test >=
$this->target
;
71
72
case
'<'
:
73
return
$test <
$this->target
;
74
75
case
'<='
:
76
return
$test <=
$this->target
;
77
78
case
'!='
:
79
return
$test !=
$this->target
;
80
}
81
82
return
$test ==
$this->target
;
83
}
84
}
ILIAS\Filesystem\Finder\Comparator\BaseComparator
Definition:
BaseComparator.php:11
ILIAS\Filesystem\Finder\Comparator\BaseComparator\$target
$target
Definition:
BaseComparator.php:14
ILIAS\Filesystem\Finder\Comparator
Definition:
BaseComparator.php:4
ILIAS\Filesystem\Finder\Comparator\BaseComparator\getOperator
getOperator()
Definition:
BaseComparator.php:38
ILIAS\Filesystem\Finder\Comparator\BaseComparator\setOperator
setOperator(string $operator)
Definition:
BaseComparator.php:46
ILIAS\Filesystem\Finder\Comparator\BaseComparator\test
test(string $test)
Definition:
BaseComparator.php:63
ILIAS\Filesystem\Finder\Comparator\BaseComparator\setTarget
setTarget(string $target)
Definition:
BaseComparator.php:30
$test
$test
Definition:
Utf8Test.php:84
ILIAS\Filesystem\Finder\Comparator\BaseComparator\getTarget
getTarget()
Definition:
BaseComparator.php:22
src
Filesystem
Finder
Comparator
BaseComparator.php
Generated on Thu Apr 3 2025 21:01:35 for ILIAS by
1.8.13 (using
Doxyfile
)