Created
June 20, 2010 07:38
-
-
Save indirect/445652 to your computer and use it in GitHub Desktop.
resource-aware breadcrumbs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class ApplicationHelper | |
def breadcrumbs | |
result = "".html_safe | |
association_chain.each_with_index do |item, index| | |
# note that .name works for both classes and objects | |
result << link_to(item.name.humanize.titlecase, association_chain[0..index]) | |
result << " » ".html_safe | |
end | |
result << resource.name.humanize.titleize | |
end | |
end |
Sorry, I have no idea what you're asking.
In wich rb file do you have to put this piece of code? in the application_helper or in something else? And is this all the code you need to create a breadcrumb? Nothing in the view like render breadcrumb?
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
can you explain how to integrate this with application? i mean in the html pages.