Symfony, Doctrine Guard Plugin, generator.yml file, customizing by using another module
I am using Symfony 1-4 and sfDoctrineGuardPlugin.
My question is, on Doctrine Gua开发者_如何学编程rd Plugin as you know each module came with generator.yml. And i need to customize generator.yml. For example, i need to display another table's (module's) column.
// for example i am at X module and need to sort according to another table's/module's column
...
config:
list:
sort: [X, asc] // x is not on my module
Same thing with list/display. I need to display some column which is not on my current module...
I couldn't find it on the web. Thanks a lot for sharing your idea and/or information, erman.
- Never mind to customize any file directly in the plugin's dir.
- Override
generator.yml
by copying it into your application's module. The module must be the same name as in plugin. See "Anatomy of a Plug-in". - Symfony does not provide a built-in functionality to sort items by columns that don't present in current model. You have to do it manually by overriding an
addSortQuery
method in your actions class. See "Symfony 1.4 admin generator sort on custom column".
Hope this would help.
精彩评论