ソースを参照

Correctif DateComponent

develop
Guillaume 3年前
コミット
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 ;
}

}

読み込み中…
キャンセル
保存