photomix/app/helpers/application_helper.rb

26 lines
917 B
Ruby
Raw Normal View History

2009-05-22 14:13:46 +02:00
# Methods added to this helper will be available to all templates in the application.
module ApplicationHelper
2009-06-11 13:05:09 +02:00
def breadcrumbs(sep = "/", include_home = true)
levels = request.path.split('?')[0].split('/')
levels.delete_at(0)
#links = "You are here: "
links = content_tag('a', "HOME", :href => "/") if include_home
2009-06-16 21:43:03 +02:00
nocrumb = ["collections", "albums", "photos", "tags", "new", "edit"]
2009-06-11 13:05:09 +02:00
levels.each_with_index do |level, index|
2009-06-16 15:51:06 +02:00
level = level.gsub(/^[0-9]+\-/,"") #if levels[index-1] == "photos"
2009-06-11 13:05:09 +02:00
level = level.gsub("-", " ")
if index+1 == levels.length
links += " #{sep} #{level.upcase}" unless nocrumb.include?(level)
else
links += " #{sep} #{content_tag('a', level.upcase, :href => '/'+levels[0..index].join('/'))}" unless nocrumb.include?(level)
end
end
2009-06-16 15:51:06 +02:00
content_tag("p", links, :id => "breadcrumb")
2009-06-11 13:05:09 +02:00
end
2009-05-22 14:13:46 +02:00
end