I would like to extend the i18n behavior, so that it joins the translation table automatically, on any type of query (DQL, relations, getTable).
Additionally it needs to define the default language parameter, so when I do a query without the language set, it falls back to the the default language.
Note: I'm looking for a generalized behavior, so that is applies to all i18n model objects, not to write and override for each of the classes.
Here is an example:
table product -> id, category_id, price...
table product_translation -> id, lang, name, description...
With the current solution when I do something like this: Doctrine_Core::getTable('Product')->findAll(), it gets all the products without joining the translations.
So in the controller I have to loop trough all the records and reapply translated values, with $product->name = $product->Translation['en']->name
I would like something like this:
Doctrine_Core::getTable('Product')->findAll()it should get the joined values for lang='en'Doctrine_Core::getTable('Product)->findAll('en')same as above- It should also work with relations, so for instance if I have a class User which has many products
$user->Productsit should return a collection with translations included. - Also something like
$user->Products('en')should return the collection for other (non-default) languages - Magic functions would also be nice (if possible)...something like
Doctrine_Core::getTable('Product')->getByCategoryAndLang(1,'en')
Can anyone help? I'm looking at templates and behaviors, I think that is the way to go, but have no clue how to implement this
EDIT: I see there is not much interest in this, so let me try with a simpler question. How do you usually get i18n fields via relations. For instance how can I call $user->Products and get the products with loaded translations?