Answer the question
In order to leave comments, you need to log in
Answer the question
In order to leave comments, you need to log in
It is forbidden. This filter has no locale parameter. Need to write your own filter twig.sensiolabs.org/doc/advanced.html#filters
severe and stupid decision within the framework of the template:
{% set mnths = ['','января','февраля','марта','апреля','мая','июня','июля','августа','сентября','октября','ноября','декабря'] %}
{{ record.datepublish|date("j") }}
{{ mnths[record.datepublish|date("n")] }}
{{ record.datepublish|date("Y") }}
$filter = new Twig_SimpleFilter('date_russian_month', function ($date) {
$months = [1 => 'января', 'февраля', 'марта', 'апреля', 'мая', 'июня', 'июля', 'августа', 'сентября', 'октября', 'ноября', 'декабря'];
$date = DateTime::createFromFormat('Y-m-d H:i:s', $date);
$key = $date->format('n');
return $date->format('d ' . $months[$key] . ' Y');
});
$twig->addFilter($filter);
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question