ILIAS
release_6 Revision v6.24-5-g0c8bfefb3b8
◀ 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
s
t
w
+
Functions
_
a
b
c
f
g
h
i
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
Factory.php
Go to the documentation of this file.
1
<?php
2
/* Copyright (c) 2019 Nils Haagen <nils.haagen@concepts-and-training.de> Extended GPL, see docs/LICENSE */
3
4
namespace
ILIAS\Data\DateFormat
;
5
9
class
Factory
10
{
14
protected
$builder
;
15
16
public
function
__construct
(
FormatBuilder
$builder
)
17
{
18
$this->builder =
$builder
;
19
}
20
25
public
function
standard
() :
DateFormat
26
{
27
return
$this->builder->year()->dash()->month()->dash()->day()->get();
28
}
29
34
public
function
custom
() :
FormatBuilder
35
{
36
return
$this->builder
;
37
}
38
42
public
function
germanShort
() :
DateFormat
43
{
44
return
$this->builder->day()->dot()->month()->dot()->year()->get();
45
}
46
50
public
function
germanLong
() :
DateFormat
51
{
52
return
$this->builder->weekday()->comma()->space()
53
->day()->dot()->month()->dot()->year()->get();
54
}
55
}
ILIAS\Data\DateFormat\Factory\standard
standard()
Get the ISO 8601 date format (YYYY-MM-DD)
Definition:
Factory.php:25
ILIAS\Data\DateFormat\Factory\__construct
__construct(FormatBuilder $builder)
Definition:
Factory.php:16
ILIAS\Data\DateFormat\Factory\custom
custom()
Get the builder to define a custom DateFormat.
Definition:
Factory.php:34
ILIAS\Data\DateFormat\Factory
Factory for Date Formats.
Definition:
Factory.php:9
ILIAS\Data\DateFormat\FormatBuilder
Builds a Date Format with split up elements to ease conversion.
Definition:
FormatBuilder.php:10
ILIAS\Data\DateFormat\Factory\germanShort
germanShort()
Definition:
Factory.php:42
ILIAS\Data\DateFormat
Definition:
DateFormat.php:4
ILIAS\Data\DateFormat\Factory\$builder
$builder
Definition:
Factory.php:14
ILIAS\Data\DateFormat\Factory\germanLong
germanLong()
Definition:
Factory.php:50
src
Data
DateFormat
Factory.php
Generated on Thu Apr 3 2025 20:01:19 for ILIAS by
1.8.13 (using
Doxyfile
)