This document is for a version of CakePHP that is no longer supported. Please upgrade to a newer release!
Das TranslateBehavior ist einfach aufzusetzen und kann direkt mit nur geringer Konfigurationsarbeit eingesetzt werden. In diesem Abschnitt wird gezeigt, wie man dieses Behavior zu einem beliebigen Model hinzufügen und es konfigurieren kann.
Wenn man TranslateBehavior neben containable verwenden möchte, müssen die ‚fields‘-Keys für die Queries gesetzt werden. Ansonsten könnte invalider SQL-Code generiert werden.
Man kann entweder die CakePHP-Konsole dazu verwenden oder die Tabellen manuell erzeugen. Es wird aber empfohlen, die Konsole zu verwenden, da sich das Layout in künftigen Versionen von CakePHP ändern könnte. Die Arbeit mit der Konsole stellt sicher, dass das korrekte Layout benutzt wird.
./cake i18n
Wenn man [I]
eingibt, wir das Initialisierungs-Skript für die
i18n-Datenbank aufgerufen. Danach wird gefragt, ob man eine existierende
Datenbank löschen möchte und man eine Datenbank erzeugen möchte. Wenn
man sich sicher ist, dass man noch keine i18n-Tabelle hat, antwortet man
mit yes. Das zweite yes erzeugt dann die Tabelle.
Mit der $actsAs
-Eigenschaft fügt man es wie im folgenden Beispiel zu
seinem Model hinzu.
<?php
class Post extends AppModel {
var $name = 'Post';
var $actsAs = array(
'Translate'
);
}
?>
Dies führt so noch zu keinen Ergebnis, da einige Optionen erwartet werden. Man muss definieren, welche Felder des aktuellen Models in der Übersetzungs-Tabelle gesucht werden sollen, die in einem ersten Schritt erzeugt wurde.
You can set the fields by simply extending the 'Translate'
value
with another array, like so:
<?php
class Post extends AppModel {
var $name = 'Post';
var $actsAs = array(
'Translate' => array(
'fieldOne', 'fieldTwo', 'and_so_on'
)
);
}
?>
After you have done that (for example putting „name“ as one of the fields) you already finished the basic setup. Great! According to our current example the model should now look something like this:
<?php
class Post extends AppModel {
var $name = 'Post';
var $actsAs = array(
'Translate' => array(
'name'
)
);
}
?>
When defining fields for TranslateBehavior to translate, be sure to omit those fields from the translated model’s schema. If you leave the fields in, there can be issues when retrieving data with fallback locales.
From now on each record update/creation will cause TranslateBehavior to copy the value of „name“ to the translation table (default: i18n) along with the current locale. A locale is the identifier of the language, so to speak.
The current locale is the current value of
Configure::read('Config.language')
. The value of Config.language
is assigned in the L10n Class - unless it is already set. However, the
TranlateBehavior allows you to override this on-the-fly, which allows
the user of your page to create multiple versions without the need to
change his preferences. More about this in the next section.
If you want to have all translation records attached to the current model record you simply extend the field array in your behavior setup as shown below. The naming is completely up to you.
<?php
class Post extends AppModel {
var $name = 'Post';
var $actsAs = array(
'Translate' => array(
'name' => 'nameTranslation'
)
);
}
?>
With this setup the result of $this->Post->find() should look something like this:
Array
(
[Post] => Array
(
[id] => 1
[name] => Beispiel Eintrag
[body] => lorem ipsum...
[locale] => de_de
)
[nameTranslation] => Array
(
[0] => Array
(
[id] => 1
[locale] => en_us
[model] => Post
[foreign_key] => 1
[field] => name
[content] => Example entry
)
[1] => Array
(
[id] => 2
[locale] => de_de
[model] => Post
[foreign_key] => 1
[field] => name
[content] => Beispiel Eintrag
)
)
)
Note: The model record contains a virtual field called „locale“. It indicates which locale is used in this result.
Note that only fields of the model you are directly doing `find` on will be translated. Models attached via associations won’t be translated because triggering callbacks on associated models is currently not supported.
You can also retrieve all translations, only when you need them, using the bindTranslation method
bindTranslation($fields, $reset)
$fields
is a named-key array of field and association name, where
the key is the translatable field and the value is the fake association
name.
$this->Post->bindTranslation(array ('name' => 'nameTranslation'));
$this->Post->find('all', array ('recursive'=>1)); // need at least recursive 1 for this to work.
With this setup the result of your find() should look something like this:
Array
(
[Post] => Array
(
[id] => 1
[name] => Beispiel Eintrag
[body] => lorem ipsum...
[locale] => de_de
)
[nameTranslation] => Array
(
[0] => Array
(
[id] => 1
[locale] => en_us
[model] => Post
[foreign_key] => 1
[field] => name
[content] => Example entry
)
[1] => Array
(
[id] => 2
[locale] => de_de
[model] => Post
[foreign_key] => 1
[field] => name
[content] => Beispiel Eintrag
)
)
)
You can force the model which is using the TranslateBehavior to save in a language other than the one detected.
To tell a model in what language the content is going to be you simply
change the value of the $locale
property on the model before you
save the data to the database. You can do that either in your controller
or you can define it directly in the model.
Example A: In your controller
<?php
class PostsController extends AppController {
var $name = 'Posts';
function add() {
if ($this->data) {
$this->Post->locale = 'de_de'; // we are going to save the german version
$this->Post->create();
if ($this->Post->save($this->data)) {
$this->redirect(array('action' => 'index'));
}
}
}
}
?>
Example B: In your model
<?php
class Post extends AppModel {
var $name = 'Post';
var $actsAs = array(
'Translate' => array(
'name'
)
);
// Option 1) just define the property directly
var $locale = 'en_us';
// Option 2) create a simple method
function setLanguage($locale) {
$this->locale = $locale;
}
}
?>
If you expect a lot of entries you probably wonder how to deal with a rapidly growing database table. There are two properties introduced by TranslateBehavior that allow you to specify which „Model“ to bind as the model containing the translations.
These are $translateModel and $translateTable.
Lets say we want to save our translations for all posts in the table „post_i18ns“ instead of the default „i18n“ table. To do so you need to setup your model like this:
<?php
class Post extends AppModel {
var $name = 'Post';
var $actsAs = array(
'Translate' => array(
'name'
)
);
// Use a different model (and table)
var $translateModel = 'PostI18n';
}
?>
Important to note is that you have to pluralize the table. It is now a usual model and can be treated as such and thus comes with the conventions involved. The table schema itself must be identical with the one generated by the CakePHP console script. To make sure it fits one could just initialize an empty i18n table using the console and rename the table afterwards.
For this to work you need to create the actual model file in your models folder. The reason is that there is no property to set the displayField directly in the model using this behavior yet.
Make sure that you change the $displayField
to 'field'
.
<?php
class PostI18n extends AppModel {
var $displayField = 'field'; // important
}
// filename: post_i18n.php
?>
That’s all it takes. You can also add all other model stuff here like
$useTable. But for better consistency we could do that in the model
which actually uses this translation model. This is where the optional
$translateTable
comes into play.
If you want to change the name of the table you simply define $translateTable in your model, like so:
<?php
class Post extends AppModel {
var $name = 'Post';
var $actsAs = array(
'Translate' => array(
'name'
)
);
// Use a different model
var $translateModel = 'PostI18n';
// Use a different table for translateModel
var $translateTable = 'post_translations';
}
?>
Please note that you can’t use $translateTable alone. If you don’t
intend to use a custom $translateModel
then leave this property
untouched. Reason is that it would break your setup and show you a
„Missing Table“ message for the default I18n model which is created in
runtime.