orbit-basic/app/models/page.rb

26 lines
679 B
Ruby
Raw Normal View History

class Page < Item
2010-01-04 07:52:30 +00:00
field :content
2011-12-23 10:34:21 +00:00
field :app_frontend_url
field :theme_id, :type => BSON::ObjectId, :default => nil
2010-01-28 09:42:55 +00:00
belongs_to :design
2011-12-23 10:34:21 +00:00
belongs_to :module_app
has_many :page_parts, :autosave => true, :dependent => :destroy
accepts_nested_attributes_for :page_parts, :allow_destroy => true
2010-01-28 09:42:55 +00:00
# embeds_many :custom_images, :class_name => 'Image', as: :design_image
2011-10-18 03:21:24 +00:00
2011-06-01 02:24:14 +00:00
def create_parts
page_design = self.design
page_design.layout.layout_parts.each do |p|
self.page_parts.create( :name => p.name, :i18n_variable => I18nVariable.create, :kind => 'text' ) if p.editable?
2011-06-01 04:00:41 +00:00
end
end
def is_home?
self.parent ? false : true
end
2011-03-01 07:58:42 +00:00
end