Код: Выделить всё
$documentURL = new Twig_SimpleFilter('documentURL', function($DocumentId, $UserId){
$URL = "http://example.example.com/start/".$DocumentId."/".$UserId."/";
return $URL;
});
Код: Выделить всё
$twig->addFilter($documentURL);
Код: Выделить всё
{{documentURL(booking.docId, user.id)}}
Код: Выделить всё
Fatal error: Uncaught exception 'Twig_Error_Syntax' with message 'The function "documentURL" does not exist in "profile.html" at line 78'
Подробнее здесь: https://stackoverflow.com/questions/220 ... parameters
Мобильная версия