accescible_app/app/models/portlets/image_content.rb
Nicolas Bally d4484275e8 initial
2011-06-25 12:08:06 +02:00

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