Class: RailsAdmin::Config::Fields::Types::Paperclip

Inherits:
FileUpload show all
Defined in:
lib/rails_admin/config/fields/types/paperclip.rb

Overview

Field type that supports Paperclip file uploads

Instance Attribute Summary

Attributes inherited from Base

#defined, #name, #order, #properties

Attributes inherited from Base

#abstract_model, #bindings, #parent, #root

Instance Method Summary collapse

Methods inherited from Base

#association?, #column_css_class, #dom_id, #dom_name, #has_errors?, inherited, #initialize, #method_name, #optional, #optional=, #optional?, #type, #value, #virtual?

Methods included from Hideable

#hidden?, #hide, included, #show

Methods inherited from Base

#has_option?, #initialize, register_class_option, #register_deprecated_instance_option, register_deprecated_instance_option, #register_instance_option, register_instance_option, #with

Constructor Details

This class inherits a constructor from RailsAdmin::Config::Fields::Base

Instance Method Details

#errorsObject



31
32
33
# File 'lib/rails_admin/config/fields/types/paperclip.rb', line 31

def errors
  bindings[:object].errors["#{name}_file_name"] + bindings[:object].errors["#{name}_content_type"] + bindings[:object].errors["#{name}_file_size"]
end

#resource_url(thumb = false) ⇒ Object



27
28
29
# File 'lib/rails_admin/config/fields/types/paperclip.rb', line 27

def resource_url(thumb = false)
  value.try(:url, (thumb || :original))
end