What are the differences between these two extensions in StofDoctrineExtensionsBundle.
gedmo_translatable gedmo_translator
What are the differences between these two extensions in StofDoctrineExtensionsBundle.
gedmo_translatable gedmo_translator
Tips from Doctrine behavioral extensions, DoctrineExtensions and StofDoctrineExtensionsBundle documentations,
Translatable gives you a very handy solution for translating records into diferent languages. Put another way, It's a behavioral extension which operate like some of the most commonly used behaviors, leaving the domain objects as clean as possible. Annotations makes it easy to understand an intended behavior of properties on your Entities.
Translator - explicit way to handle translations, as an example, here's the class used to handle entity/property translation.