Skip to content
GitLab
Explore
Projects
Groups
Topics
Snippets
Projects
Groups
Topics
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
fusiondirectory
fusiondirectory
Commits
fe079a1c
Verified
Commit
fe079a1c
authored
1 month ago
by
dockx thibault
Browse files
Options
Download
Patches
Plain Diff
(Core) - fixing phpcs
Fixing phpcs
parent
5ea53988
dev
core-php8
master
fusiondirectory-1.5
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
include/management/columns/class_supannEtatDateColumn.inc
+14
-14
include/management/columns/class_supannEtatDateColumn.inc
with
14 additions
and
14 deletions
+14
-14
include/management/columns/class_supannEtatDateColumn.inc
+
14
−
14
View file @
fe079a1c
...
...
@@ -31,17 +31,17 @@ class SupannEtatDateColumn extends LinkColumn
* @return string
* Note : Allows to receive an attribute value and return it to readable format.
*/
protected
function
renderSingleValue
(
ListingEntry
$entry
,
string
$value
):
string
protected
function
renderSingleValue
(
ListingEntry
$entry
,
string
$value
):
string
{
if
(
!
empty
(
$value
))
{
$parts
=
explode
(
':'
,
$value
);
$parts
=
explode
(
':'
,
$value
);
$startDateStr
=
$parts
[
2
]
??
''
;
$endDateStr
=
$parts
[
3
]
??
''
;
$endDateStr
=
$parts
[
3
]
??
''
;
$startDate
=
$this
->
parseDate
(
$startDateStr
);
$endDate
=
$this
->
parseDate
(
$endDateStr
);
$endDate
=
$this
->
parseDate
(
$endDateStr
);
$text
=
$parts
[
0
]
.
' : '
.
$this
->
buildDateText
(
$startDate
,
$endDate
);
$text
=
$parts
[
0
]
.
' : '
.
$this
->
buildDateText
(
$startDate
,
$endDate
);
return
$this
->
renderLink
(
$entry
,
$text
);
}
...
...
@@ -53,20 +53,20 @@ class SupannEtatDateColumn extends LinkColumn
* @return DateTimeImmutable|null
* Note :
*/
private
function
parseDate
(
string
$dateStr
):
?DateTimeImmutable
private
function
parseDate
(
string
$dateStr
):
?DateTimeImmutable
{
// Veirfy if the date received is of proper stored format.
if
(
strlen
(
$dateStr
)
===
8
)
{
$year
=
(
int
)
substr
(
$dateStr
,
0
,
4
);
$month
=
(
int
)
substr
(
$dateStr
,
4
,
2
);
$day
=
(
int
)
substr
(
$dateStr
,
6
,
2
);
$year
=
(
int
)
substr
(
$dateStr
,
0
,
4
);
$month
=
(
int
)
substr
(
$dateStr
,
4
,
2
);
$day
=
(
int
)
substr
(
$dateStr
,
6
,
2
);
try
{
return
(
new
DateTimeImmutable
())
->
setDate
(
$year
,
$month
,
$day
);
}
catch
(
\
Exception
$e
)
{
}
}
return
null
;
return
NULL
;
}
/**
...
...
@@ -75,15 +75,15 @@ class SupannEtatDateColumn extends LinkColumn
* @return string
* Note : Once date have been formated, we simply add small 'from' and to 'text' string before returning.
*/
private
function
buildDateText
(
?DateTimeImmutable
$startDate
,
?DateTimeImmutable
$endDate
):
string
private
function
buildDateText
(
?DateTimeImmutable
$startDate
,
?DateTimeImmutable
$endDate
):
string
{
if
(
$startDate
!==
null
&&
$endDate
!==
null
)
{
if
(
$startDate
!==
NULL
&&
$endDate
!==
NULL
)
{
return
'From '
.
$startDate
->
format
(
'd/m/Y'
)
.
' to '
.
$endDate
->
format
(
'd/m/Y'
);
}
if
(
$startDate
!==
null
)
{
if
(
$startDate
!==
NULL
)
{
return
'From '
.
$startDate
->
format
(
'd/m/Y'
);
}
if
(
$endDate
!==
null
)
{
if
(
$endDate
!==
NULL
)
{
return
'Until '
.
$endDate
->
format
(
'd/m/Y'
);
}
return
'No start or end dates set'
;
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment
Menu
Explore
Projects
Groups
Topics
Snippets