You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+7-13
Original file line number
Diff line number
Diff line change
@@ -88,18 +88,18 @@ Now, we want to make the `text` field translatable.
88
88
89
89
### Step 1) Update the Main Entity
90
90
91
-
1. For the main entity class, add the `Webfactory\Bundle\PolyglotBundle\Annotation\Locale`annotation to indicate your
91
+
1. For the main entity class, add the `Webfactory\Bundle\PolyglotBundle\Attribute\Locale`attribute to indicate your
92
92
primary locale. That's the locale you have used for your fields so far.
93
-
2.Annotate all translatable fields with `Webfactory\Bundle\PolyglotBundle\Annotation\Translatable`.
93
+
2.Add the `Webfactory\Bundle\PolyglotBundle\Attribute\Translatable` attribute to all translatable fields.
94
94
3. Add the collection to hold translation instances (more about that in the next section),
95
-
and annotate its field with `Webfactory\Bundle\PolyglotBundle\Annotation\TranslationCollection`. Also make sure it
95
+
and add the `Webfactory\Bundle\PolyglotBundle\Attribute\TranslationCollection` attribute to its field. Also make sure it
96
96
is initialized with an empty Doctrine collection.
97
97
4. Change the type hints for the translated fields in the main entity class from `string` to `TranslatableInterface`,
98
98
and use the special `translatable_string` Doctrine column type for it.
99
99
100
100
The `translatable_string` column type behaves like the built-in `string` type, but allows for type hinting with
101
101
`TranslatableInterface`. If you want it to behave like the `text` type instead, add the `use_text_column` option
102
-
like so: `@ORM\Column(type="translatable_string", options={"use_text_column": true})`.
102
+
like so: `#[ORM\Column(type: "translatable_string", options: ["use_text_column" => true])]`.
103
103
104
104
This will lead you to something like the following, with some code skipped for brevity:
105
105
@@ -109,7 +109,7 @@ This will lead you to something like the following, with some code skipped for b
109
109
use Doctrine\Common\Collections\Collection;
110
110
use Doctrine\Common\Collections\ArrayCollection;
111
111
use Doctrine\ORM\Mapping as ORM;
112
-
use Webfactory\Bundle\PolyglotBundle\Annotation as Polyglot;
112
+
use Webfactory\Bundle\PolyglotBundle\Attribute as Polyglot;
113
113
use Webfactory\Bundle\PolyglotBundle\TranslatableInterface;
114
114
115
115
#[Polyglot\Locale(primary: "en_GB")]
@@ -143,7 +143,7 @@ class Document
143
143
144
144
1. Create a class for the translation entity. As for the name, we suggest suffixing your main entity's name with
145
145
`Translation`. It has to contain fields for all the fields in your main entity that are to be translated. Declare
146
-
these fields as regular Doctrine ORM column, using plain column types like `text` (e.g. `@ORM\Column(type="text")`).
146
+
these fields as regular Doctrine ORM column, using plain column types like `text` (e.g. `#[ORM\Column(type: "text")]`).
147
147
You may want to extend `\Webfactory\Bundle\PolyglotBundle\Entity\BaseTranslation` to save yourself some boilerplate
148
148
code, but extending this class is not necessary.
149
149
2. To implement the one-to-many relationship, the translation entity needs to reference to the original entity.
@@ -242,7 +242,7 @@ In this case, you need to use a union type for your field type declaration as in
242
242
<?php
243
243
244
244
use Doctrine\ORM\Mapping as ORM;
245
-
use Webfactory\Bundle\PolyglotBundle\Annotation as Polyglot;
245
+
use Webfactory\Bundle\PolyglotBundle\Attribute as Polyglot;
246
246
use Webfactory\Bundle\PolyglotBundle\TranslatableInterface;
247
247
248
248
// ...
@@ -265,12 +265,6 @@ to obtain the translated values as well.
265
265
Note that it is not necessary to do this in the translations class (`DocumentTranslation` in the above examples), since that
266
266
class represents the values of a single locale only and never contains `TranslatableInterface` instances.
267
267
268
-
## Planned Features / Wish List
269
-
270
-
For now, each entity has one fixed primary locale. We have encountered cases in which some records were only available
271
-
in a language different from the primary locale. Therefore, we want to remove the primary locale annotation and store
272
-
this information in an attribute. This would allow each record to have its own primary locale.
273
-
274
268
## Credits, Copyright and License
275
269
276
270
This Bundle was written by webfactory GmbH, Bonn, Germany. We're a software development agency with a focus on PHP (mostly [Symfony](http://github.com/symfony/symfony)). If you're a developer looking for new challenges, we'd like to hear from you!
0 commit comments