Module: HasImage::ViewHelpers
- Defined in:
- lib/has_image/view_helpers.rb
Overview
Some helpers to make working with HasImage models in views a little easier.
Instance Method Summary collapse
-
#image_tag_for(object, options = {}) ⇒ Object
Wraps the image_tag helper from Rails.
Instance Method Details
#image_tag_for(object, options = {}) ⇒ Object
Wraps the image_tag helper from Rails. Instead of passing the path to an image, you can pass any object that uses HasImage. The options can include the name of one of your thumbnails, for example:
image_tag_for(@photo)
image_tag_for(@photo, :thumb => :square)
If your object uses fixed dimensions (i.e., “200x200” as opposed to “200x200>”), then the height and width properties will automatically be added to the resulting img tag unless you explicitly specify the size in the options.
All arguments other than :thumb will simply be passed along to the Rails image_tag helper without modification.
See also: HasImage::ModelInstanceMethods#public_path
23 24 25 26 27 28 29 30 31 32 33 34 35 |
# File 'lib/has_image/view_helpers.rb', line 23 def image_tag_for(object, = {}) thumb = .delete(:thumb) if ![:size] if thumb size = object.class.thumbnails[thumb.to_sym] [:size] = size if size =~ /\A[\d]*x[\d]*\Z/ else size = object.class.[:resize_to] [:size] = size if size =~ /\A[\d]*x[\d]*\Z/ end end image_tag(object.public_path(thumb), ) end |