我在 Symfony 1.4 中使用管理生成器,并希望有一个自定义操作。我可以object_actions
在我的 generator.yml 中指定我可以指定动作名称,但是有没有办法指定不同的模块名称?
生成器.yml
generator:
class: sfDoctrineGenerator
param:
model_class: MasterIndex
theme: admin
non_verbose_templates: true
with_show: false
singular: ~
plural: ~
route_prefix: master_index
with_doctrine_route: true
actions_base_class: sfActions
config:
actions: ~
fields: ~
list:
actions: {}
display: [=last_name, =first_name, =email, _number_poems, is_contestant, is_admin, is_disabled]
object_actions:
payInvoice: {label: Enter Payment, action: payInvoice} // how to specify a different module?
_edit: ~
filter:
display: [last_name, first_name, email, is_admin, is_contestant, is_disabled]
form: ~
edit: ~
new: ~
我已经尝试添加密钥module: payment
,payInvoice
但它没有效果。这是可行的吗?