Module: CamaleonCms::Admin::BreadcrumbHelper

Included in:
MenusHelper
Defined in:
app/helpers/camaleon_cms/admin/breadcrumb_helper.rb

Instance Method Summary collapse

Instance Method Details

#admin_breadcrumb_add(label, url = "") ⇒ Object

add breadcrumb item at the end label => label of the link url: url for the link DEPRECATED



13
14
# File 'app/helpers/camaleon_cms/admin/breadcrumb_helper.rb', line 13

def admin_breadcrumb_add(label, url = "")
end

#cama_admin_title_drawObject

draw the title for the admin admin panel according the breadcrumb



3
4
5
6
7
# File 'app/helpers/camaleon_cms/admin/breadcrumb_helper.rb', line 3

def cama_admin_title_draw
  res = [t("camaleon_cms.admin.sidebar_top.admin_panel")]
  @breadcrumbs.reverse.slice(0, 2).reverse.each{|b| res << (b.is_a?(Hash) ? b[:name] : b.name) }
  res.join(" &raquo; ")
end