Sfoglia il codice sorgente

Correctif DateComponent

develop
Guillaume 3 anni fa
parent
commit
25b7949a4a
1 ha cambiato i file con 14 aggiunte e 0 eliminazioni
  1. +14
    -0
      Component/DateComponent.php

+ 14
- 0
Component/DateComponent.php Vedi File

@@ -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…
Annulla
Salva