我正在移植具有以下表单代码的旧 Propel 和 Symfony 应用程序:
generator:
class: sfPropelGenerator
param:
model_class: UserForm
theme: default
config:
fields:
created_at: { params: date_format='dd.MM.yyyy HH:mm' }
updated_at: { params: date_format='dd.MM.yyyy HH:mm' }
list:
title: User Forms
display: [=form_name, product_line, created_at, updated_at]
filters: [form_name, product_line]
object_actions:
edit: { label: "Edit", action: "loadForm", icon: "/sf/sf_admin/images/edit.png" }
_delete: ~
actions:
_new: ~
然而,现在我升级到 PropelORMPlugin,我不再看到“编辑”按钮,即“object_actions”似乎不起作用。
这是我设法找到的唯一文档https://github.com/propelorm/sfPropelORMPlugin/blob/master/doc/admin_generator.md
在较新版本中使用“object_actions”的正确方法是什么?
编辑:我正在从 Symfony 1.0 移植到 1.3,从 Propel(我从未真正看过)移植到 sfPropelORMPlugin。