orbit-basic/app/models/design/layout.rb

22 lines
298 B
Ruby
Raw Normal View History

class Layout < DesignFile
2011-08-10 09:28:10 +00:00
include Parser
embedded_in :design
2011-05-18 02:00:00 +00:00
attr_reader :content
2011-05-18 02:00:00 +00:00
has_many :layout_parts
def content
self.file.read
end
2011-08-10 09:28:10 +00:00
2011-05-18 02:00:00 +00:00
def self.exist_one?
Layout.count > 0
end
2011-08-10 09:28:10 +00:00
after_save:parse_layout
def parse_layout
parse_layout_layout_part(self)
end
2011-03-08 09:25:46 +00:00
end