For the distro we would like to support our custom entities to be translatable
https://www.drupal.org/node/2433153
If we do it now it means we only have to:
- Alter the annotations for the entity
- Alter the views with the correct base tables
If we do it once people already adopted the platform we have to support updating their existing content.
Comments
Comment #2
ronaldtebrake commentedComment #4
ronaldtebrake commentedSee attached commit:
https://github.com/goalgorilla/drupal_social/commit/cb5a710061b7e3fe2a16...
What we did here was adding the correct annotations to the entities, but this resulted in all our views being rendered useless due to the fact all the content is now in new base tables and of course we needed to query these.
So we altered all the existing view configuration files, also be sure not to forget filters / sorts and handlers there.
We also altered our custom handlers, with the correct relations / joins.
Will be fixed before alpha!