Hello,
partials/headers/logged-user.volt :
<div class="header">
<div class="logo">...</div> <div class="user-menu"> <a href="{{ User.profileUrl }}" id="user-menu-link">{{user.name}}</a> </div>
</div>
Now I need to call a funcion from a service, "ServerJS"
$this->ServerJS->initBehaviour('assyncPopover', array( 'id'=>"user-menu-link' ));
(This function will add a Javascript before the "body" close tag)
My problem is that partials have no controllers and I don't know where to call this function.