Class: Decidim::Admin::AsideMenuPresenter

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

Instance Method Summary collapse

Instance Method Details

#render(render_options = {}) ⇒ Object



6
7
8
9
10
11
12
13
14
# File '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