Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

Rails helper: display flash hash (See related posts)

Rails Helper

<code rails>
def print_flash
msg = ''
flash.each_pair do |type, message|
text = content_tag(:strong, type.to_s.capitalize) << ": " << message
msg << content_tag(:p, text, :class => "flash #{type}")
end
msg
end

You need to create an account or log in to post comments to this site.


Click here to browse all 4834 code snippets

Related Posts