Class: Viewable::ImagePresenter

Inherits:
ViewablePresenter show all
Defined in:
app/presenters/viewable/image_presenter.rb

Instance Attribute Summary

Attributes inherited from BasePresenter

#context, #model

Instance Method Summary collapse

Methods inherited from ViewablePresenter

#edit_link, #li_sortable_tag

Methods inherited from BasePresenter

#initialize, #method_missing, #respond_to?

Constructor Details

This class inherits a constructor from BasePresenter

Dynamic Method Handling

This class handles dynamic methods through the method_missing method in the class BasePresenter

Instance Method Details

#pathObject



3
4
5
# File 'app/presenters/viewable/image_presenter.rb', line 3

def path
  m.image
end

#urlObject



7
8
9
# File 'app/presenters/viewable/image_presenter.rb', line 7

def url
  "#{h.request.base_url}#{path}" if path.present?
end