Я занимаюсь блога в Symfony. Вот часть моей схемы:Admin generator: почему я не могу отобразить состояние статьи, а не state_id?
Content:
connection: doctrine
tableName: ec_content
columns:
id:
type: integer(4)
fixed: false
unsigned: true
primary: true
autoincrement: true
(...)
relations:
Author:
local: author_id
foreign: id
type: one
State:
local: state_id
foreign: id
type: one
Type:
local: type_id
foreign: id
type: one
(...)
На страницах администрирования, я хочу, чтобы отобразить тип статей, но Symfony только показывает TYPE_ID, почему это?
EDIT: вот мой генератор.yml: Я еще не изменил его.
generator:
class: sfDoctrineGenerator
param:
model_class: Content
theme: admin
non_verbose_templates: true
with_show: false
singular: ~
plural: ~
route_prefix: content_Brouillons
with_doctrine_route: true
actions_base_class: sfActions
config:
actions: ~
fields: ~
list:
title: Brouillons
display: [Type, State, title, link]
filter: ~
form: ~
edit: ~
new: ~
Можете ли вы разместить свой генератор.yml из своего модуля-генератора администратора? – richsage