Symfony 1.4管理生成器如何在View中显示i18n字段

时间:2012-02-27 11:07:55

标签: symfony1 symfony-1.4 symfony-forms

我使用了管理生成器,有表有i18n字段,我有问题,在视图/显示不打印字段与i18n,但母鸡我正在编辑显示i18n正确,但在显示/视图不绘制这些字段。

如何配置在视图中显示i18n字段?

架构是:

Coleccio:
  actAs: 
    I18n:
      fields: [descripcio]
  columns:
    nom:        { type: string(50), notnull: true, unique: true }
    descripcio:   { type: text, notnull: true }
    is_historic:  { type: boolean, notnull: true, default: 0 }

Article:
  columns:
    coleccio_id:        { type: integer, notnull: true }
    nom_foto: {  type: string(50), notnull: true}
    foto:   { type: string(255), notnull: true }    
  relations:
    Coleccio: { onDelete: CASCADE, local: coleccio_id, foreign: id, foreignAlias: Article_FK }

Provincia:
  columns:
    nom: { type: string(50), notnull: true, unique: true }

Punts_Venda:
  columns:
    provincia_id: { type: integer, notnull: true }
    nom:   { type: string(50), notnull: true }
    direccio:   { type: string(100), notnull: true }
    ciutat:   { type: string(50), notnull: true }
  relations:
    Provincia: { onDelete: CASCADE, local: provincia_id, foreign: id, foreignAlias: Punts_Venda_FK }

Primera_Persona:
  actAs:    
    I18n:
      fields: [nom, descripcio]      
  columns:
    name: { type: string(80), notnull: true }
    nom: { type: string(80), notnull: true }
    descripcio:   { type: text, notnull: true }


Imatges_Primera_Persona:
  columns:
    primera_persona_id: { type: integer, notnull: true }
    nom: { type: string(50), notnull: true }
    foto:   { type: string(255), notnull: true }
    codi:   { type: string(100), notnull: false}
  relations:
    Primera_Persona: { onDelete: CASCADE, local: primera_persona_id, foreign: id, foreignAlias: Imatges_Primera_Persona_FK }

Elements_Singulars:
  actAs:    
    I18n:
      fields: [nom, descripcio]
  columns:
    name: { type: string(80), notnull: true }
    nom: { type: string(80), notnull: true }
    descripcio:   { type: text, notnull: true }
    foto:   { type: string(255), notnull: true }

谢谢你的问候

1 个答案:

答案 0 :(得分:0)

清理symfony缓存(symfony cc),清理浏览器缓存,并在您的应用的settings.yml中,试试这个:

i18n:                   on