Просмотр исходного кода

Correctif DateComponent

develop
Guillaume 3 лет назад
Родитель
Сommit
25b7949a4a
1 измененных файлов: 14 добавлений и 0 удалений
  1. +14
    -0
      Component/DateComponent.php

+ 14
- 0
Component/DateComponent.php Просмотреть файл

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

}

Загрузка…
Отмена
Сохранить