Class: Image::FlagImage

Inherits:
Base
  • Object
show all
Defined in:
app/models/image/flag_image.rb

Class Method Summary collapse

Class Method Details

.image_configurationObject




7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# File 'app/models/image/flag_image.rb', line 7

def self.image_configuration
  {
    max_upload_limit: 1048576,
    min_upload_limit: 1,
    resolutions: [550, 275],
    form_upload_image_label: "Upload a new Image",
    form_title: "Upload an Image (Flag)",
    form_sub_title: "Please read the instructions below:",
    form_instructions: [
      "the filename should be in .jpg / .jpeg or .png format",
      "the image resolutions should be <strong>550 x 275 Pixels</strong>",
      "the file size should be greater than 100 Kb and or lesser than <strong>10 MB</strong>"
    ]
  }
end