Class: Decidim::Admin::AsideMenuPresenter

Inherits:
MenuPresenter show all
Defined in:
decidim-admin/app/presenters/decidim/admin/aside_menu_presenter.rb

Instance Method Summary collapse

Methods inherited from MenuPresenter

#active_item, #evaluated_menu, #initialize

Constructor Details

This class inherits a constructor from Decidim::MenuPresenter

Instance Method Details

#render(render_options = {}) ⇒ Object



6
7
8
9
10
11
12
13
14
# File 'decidim-admin/app/presenters/decidim/admin/aside_menu_presenter.rb', line 6

def render(render_options = {}, &)
  styles = %w(item_show__content-menu)
   :div, class: styles.join(" ") do
    output = []
    output.push render_title(render_options) if render_options.fetch(:title, false)
    output.push render_menu(&)
    safe_join(output)
  end
end