Kaynağa Gözat

Correctif DateComponent

develop
Guillaume 3 yıl önce
ebeveyn
işleme
25b7949a4a
1 değiştirilmiş dosya ile 14 ekleme ve 0 silme
  1. +14
    -0
      Component/DateComponent.php

+ 14
- 0
Component/DateComponent.php Dosyayı Görüntüle

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

}

Yükleniyor…
İptal
Kaydet