ILIAS
release_8 Revision v8.19
◀ 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
n
o
p
r
s
t
u
v
w
x
+
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
j
l
m
p
s
t
u
+
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
r
s
t
u
v
w
x
z
+
Functions
_
a
b
c
d
e
g
h
i
m
n
p
r
s
t
u
v
x
+
Variables
$
a
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
z
Examples
•
All
Data Structures
Namespaces
Files
Functions
Variables
Modules
Pages
DateComparator.php
Go to the documentation of this file.
1
<?php
2
3
declare(strict_types=1);
4
5
namespace
ILIAS\Filesystem\Finder\Comparator
;
6
7
use
Exception
;
8
use
InvalidArgumentException
;
9
10
/******************************************************************************
11
*
12
* This file is part of ILIAS, a powerful learning management system.
13
*
14
* ILIAS is licensed with the GPL-3.0, you should have received a copy
15
* of said license along with the source code.
16
*
17
* If this is not the case or you just want to try ILIAS, you'll find
18
* us at:
19
* https://www.ilias.de
20
* https://github.com/ILIAS-eLearning
21
*
22
*****************************************************************************/
23
29
class
DateComparator
extends
BaseComparator
30
{
31
public
function
__construct
(
string
$test)
32
{
33
if
(!preg_match(
'#^\s*(==|!=|[<>]=?|after|since|before|until)?\s*(.+?)\s*$#i'
, $test, $matches)) {
34
throw
new
InvalidArgumentException
(sprintf(
'Don\'t understand "%s" as a date test.'
, $test));
35
}
36
37
try
{
38
$date = new \DateTime($matches[2]);
39
$target
= $date->format(
'U'
);
40
}
catch
(
Exception
$e
) {
41
throw
new
InvalidArgumentException
(sprintf(
'"%s" is not a valid date.'
, $matches[2]));
42
}
43
44
$operator = $matches[1] ??
'=='
;
45
46
if
(
'since'
=== $operator ||
'after'
=== $operator) {
47
$operator =
'>'
;
48
}
49
50
if
(
'until'
=== $operator ||
'before'
=== $operator) {
51
$operator =
'<'
;
52
}
53
54
$this->
setOperator
($operator);
55
$this->
setTarget
(
$target
);
56
}
57
}
ILIAS\Filesystem\Finder\Comparator\BaseComparator\$target
string $target
Definition:
BaseComparator.php:30
ILIAS\Filesystem\Finder\Comparator\BaseComparator
Definition:
BaseComparator.php:28
Vendor\Package\$e
$e
Definition:
example_cleaned.php:49
ILIAS\Filesystem\Finder\Comparator
Definition:
BaseComparator.php:5
ILIAS\Filesystem\Finder\Comparator\BaseComparator\setOperator
setOperator(string $operator)
Definition:
BaseComparator.php:48
ILIAS\Filesystem\Finder\Comparator\DateComparator
Definition:
DateComparator.php:29
ILIAS\Filesystem\Finder\Comparator\DateComparator\__construct
__construct(string $test)
Definition:
DateComparator.php:31
ILIAS\Filesystem\Finder\Comparator\BaseComparator\setTarget
setTarget(string $target)
Definition:
BaseComparator.php:38
InvalidArgumentException
Exception
src
Filesystem
Finder
Comparator
DateComparator.php
Generated on Fri Apr 4 2025 22:03:11 for ILIAS by
1.8.13 (using
Doxyfile
)