Class: Comfy::Cms::File

Inherits:
ActiveRecord::Base
  • Object
show all
Includes:
WithCategories
Defined in:
app/models/comfy/cms/file.rb

Constant Summary collapse

VARIANT_SIZE =
{
  redactor: { resize: "100x75^",   gravity: "center", crop: "100x75+0+0" },
  thumb:    { resize: "200x150^",  gravity: "center", crop: "200x150+0+0" },
  icon:     { resize: "28x28^",    gravity: "center", crop: "28x28+0+0" }
}.freeze

Instance Attribute Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#fileObject

temporary place to store attachment



16
17
18
# File 'app/models/comfy/cms/file.rb', line 16

def file
  @file
end

Instance Method Details

#labelObject

– Instance Methods ——————————————————–



38
39
40
41
42
# File 'app/models/comfy/cms/file.rb', line 38

def label
  l = read_attribute(:label)
  return l if l.present?
  attachment.attached? ? attachment.filename.to_s : nil
end