9 lines
298 B
Ruby
9 lines
298 B
Ruby
# -*- encoding : utf-8 -*-
|
|
class ImageContent < ActiveRecord::Base
|
|
belongs_to :image_file
|
|
|
|
has_one :portlet, :as => :content, :dependent => :destroy
|
|
STYLES = [["Taille moyenne","1"], ["Petite taille","2"], ["Petit carré","3"], ["Miniature","4"]]
|
|
ALIGNS = ["center", "left", "right"]
|
|
end
|