私のレイアウト(Twig)では、Middleware authenticationから値を取得したいと思います。Zend expressive - レイアウト
私はtemplates.global.pĥpに、置く場合:
'twig' => [
'globals' => [
// Variables to pass to all twig templates
'auth' => (new \Zend\Authentication\AuthenticationService())->hasIdentity(),
],
],
とレイアウトでは、このコードは動作しますが、それは良い方法である
{% if auth %}
Connect
{% else %}
Not connect
{% endif %}
をdefault.html.twig?
ありがとうございました:)
私はテストします。ありがとうございました ! – Flo