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
FormatBuilder.php
Go to the documentation of this file.
1
<?php
18
declare(strict_types=1);
19
20
namespace
ILIAS\Data\DateFormat
;
21
26
class
FormatBuilder
27
{
29
private
array
$format
= [];
30
34
public
function
get
():
DateFormat
35
{
36
$df =
new
DateFormat
($this->format);
37
$this->format = [];
38
return
$df;
39
}
40
41
public
function
initWithFormat
(
DateFormat
$format): self
42
{
43
$this->format = $format->
toArray
();
44
return
$this;
45
}
46
50
public
function
dot
(): self
51
{
52
$this->format[] =
DateFormat::DOT
;
53
return
$this;
54
}
55
56
public
function
comma
(): self
57
{
58
$this->format[] =
DateFormat::COMMA
;
59
return
$this;
60
}
61
62
public
function
dash
(): self
63
{
64
$this->format[] =
DateFormat::DASH
;
65
return
$this;
66
}
67
68
public
function
slash
(): self
69
{
70
$this->format[] =
DateFormat::SLASH
;
71
return
$this;
72
}
73
74
public
function
space
(): self
75
{
76
$this->format[] =
DateFormat::SPACE
;
77
return
$this;
78
}
79
80
public
function
day
(): self
81
{
82
$this->format[] =
DateFormat::DAY
;
83
return
$this;
84
}
85
86
public
function
dayOrdinal
(): self
87
{
88
$this->format[] =
DateFormat::DAY_ORDINAL
;
89
return
$this;
90
}
91
92
public
function
weekday
(): self
93
{
94
$this->format[] =
DateFormat::WEEKDAY
;
95
return
$this;
96
}
97
98
public
function
weekdayShort
(): self
99
{
100
$this->format[] =
DateFormat::WEEKDAY_SHORT
;
101
return
$this;
102
}
103
104
public
function
week
(): self
105
{
106
$this->format[] =
DateFormat::WEEK
;
107
return
$this;
108
}
109
110
public
function
month
(): self
111
{
112
$this->format[] =
DateFormat::MONTH
;
113
return
$this;
114
}
115
116
public
function
monthSpelled
(): self
117
{
118
$this->format[] =
DateFormat::MONTH_SPELLED
;
119
return
$this;
120
}
121
122
public
function
monthSpelledShort
(): self
123
{
124
$this->format[] =
DateFormat::MONTH_SPELLED_SHORT
;
125
return
$this;
126
}
127
128
public
function
year
(): self
129
{
130
$this->format[] =
DateFormat::YEAR
;
131
return
$this;
132
}
133
134
public
function
twoDigitYear
(): self
135
{
136
$this->format[] =
DateFormat::YEAR_TWO_DIG
;
137
return
$this;
138
}
139
140
public
function
hours24
():
FormatBuilder
141
{
142
$this->format[] =
DateFormat::HOURS24
;
143
return
$this;
144
}
145
146
public
function
hours12
():
FormatBuilder
147
{
148
$this->format[] =
DateFormat::HOURS12
;
149
return
$this;
150
}
151
152
public
function
minutes
():
FormatBuilder
153
{
154
$this->format[] =
DateFormat::MINUTES
;
155
return
$this;
156
}
157
158
public
function
seconds
():
FormatBuilder
159
{
160
$this->format[] =
DateFormat::SECONDS
;
161
return
$this;
162
}
163
164
public
function
meridiem
():
FormatBuilder
165
{
166
$this->format[] =
DateFormat::MERIDIEM
;
167
return
$this;
168
}
169
170
public
function
colon
():
FormatBuilder
171
{
172
$this->format[] =
DateFormat::COLON
;
173
return
$this;
174
}
175
}
ILIAS\Data\DateFormat\DateFormat\SECONDS
const SECONDS
Definition:
DateFormat.php:46
ILIAS\Data\DateFormat\DateFormat\MONTH_SPELLED
const MONTH_SPELLED
Definition:
DateFormat.php:39
ILIAS\Data\DateFormat\DateFormat\COMMA
const COMMA
Definition:
DateFormat.php:29
ILIAS\Data\DateFormat\FormatBuilder\weekday
weekday()
Definition:
FormatBuilder.php:92
ILIAS\Data\DateFormat\DateFormat\YEAR
const YEAR
Definition:
DateFormat.php:41
ILIAS\Data\DateFormat\DateFormat\HOURS12
const HOURS12
Definition:
DateFormat.php:43
ILIAS\Data\DateFormat\FormatBuilder\dot
dot()
Append tokens to format.
Definition:
FormatBuilder.php:50
ILIAS\Data\DateFormat\DateFormat\toArray
toArray()
Get the elements of the format as array.
Definition:
DateFormat.php:96
ILIAS\Data\DateFormat\FormatBuilder\colon
colon()
Definition:
FormatBuilder.php:170
ILIAS\Data\DateFormat\FormatBuilder\hours24
hours24()
Definition:
FormatBuilder.php:140
ILIAS\Data\DateFormat\FormatBuilder\hours12
hours12()
Definition:
FormatBuilder.php:146
ILIAS\Data\DateFormat\FormatBuilder\week
week()
Definition:
FormatBuilder.php:104
ILIAS\Data\DateFormat\FormatBuilder\slash
slash()
Definition:
FormatBuilder.php:68
ILIAS\Data\DateFormat\DateFormat\DOT
const DOT
Definition:
DateFormat.php:28
ILIAS\Data\DateFormat\FormatBuilder\seconds
seconds()
Definition:
FormatBuilder.php:158
ILIAS\Data\DateFormat\DateFormat\YEAR_TWO_DIG
const YEAR_TWO_DIG
Definition:
DateFormat.php:42
ILIAS\Data\DateFormat\FormatBuilder\meridiem
meridiem()
Definition:
FormatBuilder.php:164
ILIAS\Data\DateFormat\DateFormat\DASH
const DASH
Definition:
DateFormat.php:30
ILIAS\Data\DateFormat\FormatBuilder\$format
array $format
Definition:
FormatBuilder.php:29
ILIAS\Data\DateFormat\FormatBuilder\space
space()
Definition:
FormatBuilder.php:74
ILIAS\Data\DateFormat\DateFormat\MONTH
const MONTH
Definition:
DateFormat.php:38
ILIAS\Data\DateFormat\DateFormat\SPACE
const SPACE
Definition:
DateFormat.php:32
ILIAS\Data\DateFormat\DateFormat\MINUTES
const MINUTES
Definition:
DateFormat.php:45
ILIAS\Data\DateFormat\DateFormat\SLASH
const SLASH
Definition:
DateFormat.php:31
ILIAS\Data\DateFormat\FormatBuilder
Builds a Date Format with split up elements to ease conversion.
Definition:
FormatBuilder.php:26
ILIAS\Data\DateFormat\FormatBuilder\weekdayShort
weekdayShort()
Definition:
FormatBuilder.php:98
ILIAS\Data\DateFormat\DateFormat
A Date Format provides a format definition akin to PHP's date formatting options, but stores the sing...
Definition:
DateFormat.php:26
ILIAS\Data\DateFormat\FormatBuilder\month
month()
Definition:
FormatBuilder.php:110
ILIAS\Data\DateFormat\DateFormat\DAY
const DAY
Definition:
DateFormat.php:33
ILIAS\Data\DateFormat\FormatBuilder\monthSpelled
monthSpelled()
Definition:
FormatBuilder.php:116
ILIAS\Data\DateFormat
Definition:
DateFormat.php:20
ILIAS\Data\DateFormat\FormatBuilder\comma
comma()
Definition:
FormatBuilder.php:56
ILIAS\Data\DateFormat\FormatBuilder\minutes
minutes()
Definition:
FormatBuilder.php:152
ILIAS\Data\DateFormat\FormatBuilder\twoDigitYear
twoDigitYear()
Definition:
FormatBuilder.php:134
ILIAS\Data\DateFormat\FormatBuilder\initWithFormat
initWithFormat(DateFormat $format)
Definition:
FormatBuilder.php:41
ILIAS\Data\DateFormat\FormatBuilder\monthSpelledShort
monthSpelledShort()
Definition:
FormatBuilder.php:122
ILIAS\Data\DateFormat\FormatBuilder\dayOrdinal
dayOrdinal()
Definition:
FormatBuilder.php:86
ILIAS\Data\DateFormat\FormatBuilder\year
year()
Definition:
FormatBuilder.php:128
ILIAS\Data\DateFormat\DateFormat\HOURS24
const HOURS24
Definition:
DateFormat.php:44
ILIAS\Data\DateFormat\DateFormat\DAY_ORDINAL
const DAY_ORDINAL
Definition:
DateFormat.php:34
ILIAS\Data\DateFormat\DateFormat\MONTH_SPELLED_SHORT
const MONTH_SPELLED_SHORT
Definition:
DateFormat.php:40
ILIAS\Data\DateFormat\DateFormat\WEEKDAY
const WEEKDAY
Definition:
DateFormat.php:35
ILIAS\Data\DateFormat\FormatBuilder\dash
dash()
Definition:
FormatBuilder.php:62
ILIAS\Data\DateFormat\DateFormat\COLON
const COLON
Definition:
DateFormat.php:48
ILIAS\Data\DateFormat\DateFormat\MERIDIEM
const MERIDIEM
Definition:
DateFormat.php:47
ILIAS\Data\DateFormat\FormatBuilder\day
day()
Definition:
FormatBuilder.php:80
ILIAS\Data\DateFormat\DateFormat\WEEK
const WEEK
Definition:
DateFormat.php:37
ILIAS\Data\DateFormat\DateFormat\WEEKDAY_SHORT
const WEEKDAY_SHORT
Definition:
DateFormat.php:36
src
Data
DateFormat
FormatBuilder.php
Generated on Fri Apr 4 2025 22:03:10 for ILIAS by
1.8.13 (using
Doxyfile
)