Created
September 26, 2010 20:14
-
-
Save parndt/598282 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# How to re-use the menu partial for a submenu in Refinery CMS >= 0.9.8.5 and < 0.9.9.22 | |
# header menu (main menu) which hides its children. | |
<%= render :partial => "/shared/menu", | |
:locals => { | |
:dom_id => 'menu', | |
:css => 'menu', | |
:collection => @menu_pages, | |
:hide_children => true | |
} -%> | |
# content menu (submenu) (extra_suffix cures double-up on cache) | |
<%= render :partial => '/shared/menu', | |
:locals => { | |
:dom_id => 'submenu', | |
:css => 'menu', | |
:roots => @menu_pages.reject{|p| p.parent_id != @page.root.id }, | |
:collection => @menu_pages.reject{|p| !p.self_and_ancestors.map(&:id).include?(@page.root.id) }, | |
:extra_suffix => 'submenu' | |
} %> |
Anyone got this working in 2.1?
For 2.1's sexy new menu presenter:
<%=
presenter = Refinery::Pages::MenuPresenter.new(refinery_menu_pages, self)
presenter.roots = refinery_menu_pages.select{|p| p.parent_id == @page.root.id}
presenter.to_html
%>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
this works for me:
It'll display all sub menu links for a root menu item while on a page for that root.