18 lines
280 B
Ruby
18 lines
280 B
Ruby
# -*- encoding : utf-8 -*-
|
|
class DynamicContent < ActiveRecord::Base
|
|
has_one :portlet, :as => :content, :dependent => :destroy
|
|
|
|
belongs_to :item
|
|
|
|
NAMES = {
|
|
"partners" => "Partenaires",
|
|
"prog" => "Programation",
|
|
|
|
}
|
|
|
|
def self.picto
|
|
"cog"
|
|
end
|
|
|
|
end
|