我的i18n学说模式和i.a.有一个奇怪的问题。管理生成器。
(请先查看下面的编辑部分)
架构如下:
CargoSize:
connection: doctrine
actAs:
Timestampable: ~
I18n:
fields: [name, linkname, seoname, description]
tableName: com_cargo_size
columns:
id: { type: integer(11), notnull: true, unsigned: true, primary: true, autoincrement: true }
name: { type: string(50), notnull: true }
linkname: { type: string(100), notnull: true }
seoname: { type: string(100), notnull: true }
description: { type: string(255), notnull: true }
我对sfForms的第一个问题是:
new sfWidgetFormDoctrineChoice(array('model' => 'CargoSize', 'expanded' => true, 'multiple' => false), array('style' => 'list-style-type: none; display: inline;'))
这会生成一个带有正确ID但是空名称值的无线电按钮。 即使我尝试通过ID和LANG直接选择CargoSize对象来获取名称值,getName()也总是返回一个空字符串(使用合适的数据正确填充数据库)。
对于模式定义是什么意思?
第二个问题出现在admin-generator中:
php symfony doc:generate-admin --module=cargo_size admin CargoSize
generator.yml看起来像:
generator:
class: sfDoctrineGenerator
param:
model_class: CargoSize
theme: admin
non_verbose_templates: true
with_show: false
singular: ~
plural: ~
route_prefix: cargo_size
with_doctrine_route: true
actions_base_class: sfActions
config:
actions: ~
fields: ~
list:
display: [name, lang]
filter: ~
form: ~
edit:
display: [name]
new: ~
有趣的是,列表视图显示了i18n名称。但在编辑视图中,我总是得到错误“widget'name'不存在”。
你们有没有想过为什么会这样?我非常感谢你的帮助。
修改
我认为这个问题更深入,因为这种简单的代码安静注意到了工作:
首先是示例的数据集:
cargo_size
id created_at updated_at
1 2010-04-22 21:37:44 2010-04-22 21:37:44
cargo_size_translation
id name linkname seoname description lang
1 klein klein klein klein de
1 small small small small en
$c = Doctrine::getTable('CargoSize')->findOneBy('id', 1);
echo $c; // (toString exists)
// Output: Catchable fatal error: Method CargoSize::__toString()
// must return a string value in
// /var/www/.../apps/frontend/modules/start/templates/indexSuccess.php on line 1
echo $c->getName();
// Output: nothing
有人有什么想法吗?我真的很擅长:(
答案 0 :(得分:2)
第一个问题:
显示的“名称值”取自__toString()方法结果。 您可以添加“方法”选项,如下所示:
new sfWidgetFormDoctrineChoice(array('model' => 'CargoSize', 'expanded' => true, 'multiple' => false, 'method' => 'getName'), array('style' => 'list-style-type: none; display: inline;'))
第二个问题:
您的表单必须嵌入i18n表单。为此,请将其放在configure方法中:
$this->embedI18n($cultures);
其中$ cultures是您的文化代码数组。
答案 1 :(得分:1)
我发现了这个错误。出于某种原因,文化被设置为“ de_DE ”而不仅仅是“de”。 有了这个设置,i18n行为的东西就不起作用了!