Consider these relations:
product n:n productcat n:1 project n:n locale
(product, productcat, project also have translations in seperate entities using gedmo translatable) in my product formclass, i want to retreive the locales for the related project
The reason i need these locales is to only render the form using the translatable fields, that are linked to the appropriate project .. (a project wich is EN only, should not have fields for other translations)
How would i do this without making my formclass into a service (wich i would have to do to every formclass that uses the translatables) or without passing the locales to the formbuilder every time ..
I hope i explained this properly.
Thx
Sam