我试图整理下面的phpcr结构,其中包括将某些版本的文档冻结为引用,然后将其推送到外部系统api进行转换。对语言环境完成翻译后,会将其发回,并使用翻译内容和版本参考更新相关的语言环境节点。
ROOT:
mstr:
a-doc
ref:
a-doc:
1.0:
1.3:
1.7:
locale:
es-ES
a-doc
所以这一切都在起作用。
现在我添加了CmfRountingBundle,并且无法弄清楚如何使区域设置路由工作(添加区域设置模式选项)。
我想我必须创建一个自定义的TranslationStrategy,在我的情况下,我只需要loadTranslation方法来查找语言环境路径中的相关文档。
所以这就是我所拥有的:
<?php
namespace My\Project\Translation\TranslationStrategy;
use Doctrine\ODM\PHPCR\Translation\TranslationStrategy\TranslationStrategyInterface;
use Doctrine\ODM\PHPCR\Mapping\ClassMetadata;
use PHPCR\NodeInterface;
class CustomTranslationStrategy implements TranslationStrategyInterface
{
/**
* {@inheritdoc}
*/
public function loadTranslation($document, NodeInterface $node, ClassMetadata $metadata, $locale)
{
throw new \Exception('Load translation not yet implemented ...');
}
....
我在文档中添加了一个翻译属性:
/**
* @PHPCR\Document(
* versionable="full",
* translator="custom",
* mixins={"mix:created", "mix:lastModified"}
* )
*/
class Page implements ContentInterface, VersionableContentInterface {
/**
* The language this document currently is in
* @PHPCR\Locale()
*/
protected $locale;
更新了我的config.yml
parameters:
translation_locales: [zh-CN,de-DE,es-ES,fr-FR,it-IT,ja-JP,ko-KR,en-UK,en-US]
doctrine_phpcr:
session:
backend: "%phpcr_backend%"
workspace: "%phpcr_workspace%"
username: "%phpcr_user%"
password: "%phpcr_password%"
odm:
auto_mapping: true
auto_generate_proxy_classes: "%kernel.debug%"
locales:
en: [de, fr]
de: [en, fr]
fr: [en, de]
#es: [en]
cmf_core:
persistence:
phpcr:
translation_strategy: My\Project\Translation\TranslationStrategy\CustomTranslationStrategy
# if you want another basepath
# basepath: /custom/basepath
publish_workflow: false
cmf_routing:
chain:
routers_by_id:
cmf_routing.dynamic_router: 20
router.default: 100
dynamic:
locales: %translation_locales%
persistence:
phpcr:
use_sonata_admin: auto
content_basepath: /mstr
admin_basepath: /cms/routes
templates_by_class:
%my_page_document%: MyDemoBundle:Page:simple.html.twig
现在当我去/ fr-FR / a-doc时,我只看到文档的英文内容,当我去/ es-ES / a-doc时,我得到500错误:语言环境&#39; ES-ES&#39;在可用语言环境列表中不存在(我在odm语言环境中对它进行了评论)。
我显然错过了文档提到的$ dm-&gt; setTranslationStrategy调用,只是不确定如何将它注入cmf路由包中,以便在loadTranslation中获取我的异常。
关于我如何才能使这个工作的任何建议?!