如何在 Doctrine 中结合使用 I8n 行为和 sluggable 行为
我有一张桌子,上面有文章。该表具有字段 id、标题和文本。
我在标题字段上使用了 sluggable 行为,从而产生了一个唯一的 url
$sluggable0 = new Doctrine_Template_Sluggable(
array('name'=>'url',
'fields'=>array(0 => 'title'),
'unique'=>true,
'canUpdate'=>true)
);
$this->actAs($sluggable0);
现在我想以多种语言使用该文章。现在使用 I18n 行为对文本进行国际化
$this->actAs('I18n', array('fields'=>array('text')));
我的问题:如何国际化标题字段,以便在将使用的每种语言中都有唯一的 url?
谢谢!!
i've got a table with articles. The table has the fields id, title and text.
I'm using the sluggable behaviour on the title-field resulting in a unique url
$sluggable0 = new Doctrine_Template_Sluggable(
array('name'=>'url',
'fields'=>array(0 => 'title'),
'unique'=>true,
'canUpdate'=>true)
);
$this->actAs($sluggable0);
Now I'd like to use the article in multiple languagles. The text is now internationalized using the I18n-behaviour
$this->actAs('I18n', array('fields'=>array('text')));
My question: how can I internationalize the title field, so that there are unique url's in each language that will be used?
Thanks!!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这非常简单,您需要将 sluggable 项目作为子项添加到 I18n 行为中。
所以试试这个:
It's really simple, you'll need to add the sluggable item as a child to I18n behavior.
So try this: