Eccube\Twig\Extension\EccubeExtension::getDateFormatFilter PHP Method

getDateFormatFilter() public method

Name of this extension
public getDateFormatFilter ( $date, $value = '', $format = 'Y/m/d' ) : string
return string
    public function getDateFormatFilter($date, $value = '', $format = 'Y/m/d')
    {
        if (is_null($date)) {
            return $value;
        } else {
            return $date->format($format);
        }
    }