Skip to content

Latest commit

 

History

History
24 lines (18 loc) · 467 Bytes

twig.md

File metadata and controls

24 lines (18 loc) · 467 Bytes

Twig extension

Overridden filter

date filter is overridden and use a Formatter::format().

{# return 'Июля' #}
{{ '2016-07-20' | date('f') }}

New functions

Added functions for compare dates and times in Twig

{{ compare_date_time($x, '>', $y) }}
{{ compare_date($x, '>=', $y) }}
{{ compare_time($x, '<', $y) }}
{{ compare_week($x, '<=', $y) }}
{{ compare_month($x, '=', $y) }}
{{ compare_year($x, '!=', $y) }}