开发者

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.


  1. Never mind to customize any file directly in the plugin's dir.
  2. 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".
  3. 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.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜