Selaa lähdekoodia

Correctif DateComponent

develop
Guillaume 3 vuotta sitten
vanhempi
commit
25b7949a4a
1 muutettua tiedostoa jossa 14 lisäystä ja 0 poistoa
  1. +14
    -0
      Component/DateComponent.php

+ 14
- 0
Component/DateComponent.php Näytä tiedosto

@@ -52,4 +52,18 @@ class DateComponent
return '';
}

// getDeliverySlotHour
public function getHour(\DateTime $date)
{
$timestamp = $date->getTimestamp() ;
$hour = $this->date('%kh', $timestamp) ;
$minutes = $this->date('%M', $timestamp) ;

if($minutes != '00') {
$hour .= $minutes ;
}

return $hour ;
}

}

Loading…
Peruuta
Tallenna