class ActiveAdmin::Views::Menu
The entire component is rendered within one ul element.
displayed given the current context and renders them appropriately.
This component takes cares of deciding which items should be
Renders an ActiveAdmin::Menu as a set of unordered list items.
def build(menu, options = {})
-
options
(Hash
) -- the options as passed to the underlying ul element. -
menu
(ActiveAdmin::Menu
) -- the Menu to render
def build(menu, options = {}) @menu = menu super(options) menu.items.each do |item| menu_item(item) if helpers.render_in_context self, item.should_display end children.sort! end
def tag_name
def tag_name "ul" end