Actions
Feature #17763
closedAbility to render multiple partials with view hook
Start date:
Due date:
% Done:
0%
Estimated time:
Resolution:
Fixed
Description
Added ability to render multiple partials with view hook
Files
Updated by Jean-Baptiste Barth about 10 years ago
Isn't it easier to add a "parent" partial that groups the other ones you'd want to render ? Maybe you can explain why this is needed.
Plus we need to have some tests if we ever want to merge this in.
Updated by Ilya S about 10 years ago
It's easier, in case of multiple partials within one plugin, but if you have multiple plugins using the same hook - it's a problem.
Updated by Jean-Philippe Lang about 10 years ago
This patch assumes that we're rendering partials which is just one of the many #render options.
I'd like something that does not depend on that.
Updated by Jean-Philippe Lang about 10 years ago
- File multiple_render.patch multiple_render.patch added
Here is another option, feedback is welcome. Basically, the syntax would be:
render_on :some_hook, :partial => "show_more_data" render_on :some_hook, {:partial => "show_more_data"}, {:partial => "show_even_more_data"} render_on :some_hook, {:partial => "show_more_data"}, {:inline => "<%= show_even_more_data %>"}
Updated by Jean-Philippe Lang about 10 years ago
- Tracker changed from Patch to Feature
- Subject changed from ability to render multiple partials with view hook to Ability to render multiple partials with view hook
- Category changed from Core Plugins to Plugin API
- Assignee set to Jean-Philippe Lang
- Target version set to 3.0.0
- Resolution set to Fixed
Feature added in r13449.
Updated by Jean-Philippe Lang about 10 years ago
- Status changed from New to Closed
Actions