Bläddra i källkod

Correctif DateComponent

develop
Guillaume 3 år sedan
förälder
incheckning
25b7949a4a
1 ändrade filer med 14 tillägg och 0 borttagningar
  1. +14
    -0
      Component/DateComponent.php

+ 14
- 0
Component/DateComponent.php Visa fil

@@ -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 ;
}

}

Laddar…
Avbryt
Spara