Skip to content

Commit d7c85e1

Browse files
committed
Further tweak the README
1 parent 97fb051 commit d7c85e1

File tree

1 file changed

+7
-13
lines changed

1 file changed

+7
-13
lines changed

README.md

+7-13
Original file line numberDiff line numberDiff line change
@@ -88,18 +88,18 @@ Now, we want to make the `text` field translatable.
8888

8989
### Step 1) Update the Main Entity
9090

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
9292
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.
9494
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
9696
is initialized with an empty Doctrine collection.
9797
4. Change the type hints for the translated fields in the main entity class from `string` to `TranslatableInterface`,
9898
and use the special `translatable_string` Doctrine column type for it.
9999

100100
The `translatable_string` column type behaves like the built-in `string` type, but allows for type hinting with
101101
`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])]`.
103103

104104
This will lead you to something like the following, with some code skipped for brevity:
105105

@@ -109,7 +109,7 @@ This will lead you to something like the following, with some code skipped for b
109109
use Doctrine\Common\Collections\Collection;
110110
use Doctrine\Common\Collections\ArrayCollection;
111111
use Doctrine\ORM\Mapping as ORM;
112-
use Webfactory\Bundle\PolyglotBundle\Annotation as Polyglot;
112+
use Webfactory\Bundle\PolyglotBundle\Attribute as Polyglot;
113113
use Webfactory\Bundle\PolyglotBundle\TranslatableInterface;
114114

115115
#[Polyglot\Locale(primary: "en_GB")]
@@ -143,7 +143,7 @@ class Document
143143

144144
1. Create a class for the translation entity. As for the name, we suggest suffixing your main entity's name with
145145
`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")]`).
147147
You may want to extend `\Webfactory\Bundle\PolyglotBundle\Entity\BaseTranslation` to save yourself some boilerplate
148148
code, but extending this class is not necessary.
149149
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
242242
<?php
243243

244244
use Doctrine\ORM\Mapping as ORM;
245-
use Webfactory\Bundle\PolyglotBundle\Annotation as Polyglot;
245+
use Webfactory\Bundle\PolyglotBundle\Attribute as Polyglot;
246246
use Webfactory\Bundle\PolyglotBundle\TranslatableInterface;
247247

248248
// ...
@@ -265,12 +265,6 @@ to obtain the translated values as well.
265265
Note that it is not necessary to do this in the translations class (`DocumentTranslation` in the above examples), since that
266266
class represents the values of a single locale only and never contains `TranslatableInterface` instances.
267267

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-
274268
## Credits, Copyright and License
275269

276270
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

Comments
 (0)