Sha256: cca06c15dd00a0cf9de8520bee3b3dc5e1625d6e007a99f1b4fe0e42810202a2

Contents?: true

Size: 1.21 KB

Versions: 4

Compression:

Stored size: 1.21 KB

Contents

module Adminpanel
  class Product < ActiveRecord::Base
    include Adminpanel::Base
    include Adminpanel::Facebook
    include Adminpanel::Twitter

    has_many :categorizations
    has_many :categories, through: :categorizations
    mount_images :photos

    validates_presence_of :name
    validates_presence_of :price
    validates_presence_of :description

    def self.form_attributes
      [
      {"category_ids" => {"type" => "has_many", "model" => "Adminpanel::Category", "name" => "category_ids"}},
      {
        'name' => {
          'type' => 'text_field',
          'label' => 'name',
          'placeholder' => 'name'}
      },
      {
        'price' => {
          'type' => 'text_field',
          'name' => 'price'
        }
      },
      {
        'photos' => {
          'type' => 'adminpanel_file_field',
          'label' => 'photo',
          'placeholder' => 'photo',
          'max-files' => 2
        }
      },
      {
        'description' => {
          'type' => 'wysiwyg_field',
          'label' => 'description',
          'placeholder' => 'description'
        }
      },
      ]
    end

    def self.display_name
      "Producto"
    end

    def self.icon
      "icon-truck"
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
adminpanel-2.5.3 test/dummy/app/models/adminpanel/product.rb
adminpanel-2.5.2 test/dummy/app/models/adminpanel/product.rb
adminpanel-2.5.1 test/dummy/app/models/adminpanel/product.rb
adminpanel-2.5.0 test/dummy/app/models/adminpanel/product.rb