I'm porting an older Propel and Symfony application that has this form code:
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: ~
However, now that I upgraded to PropelORMPlugin, I no longer see the "edit" button, i.e. the "object_actions" does not seem to work.
This is the only documentation I managed to find https://github.com/propelorm/sfPropelORMPlugin/blob/master/doc/admin_generator.md
Whats the correct way to have "object_actions" in newer version?
Edit: I'm porting from Symfony 1.0 to 1.3, from Propel (I never looked really) to sfPropelORMPlugin.