2010-01-14 10:30:53 +00:00
|
|
|
class Component < Item
|
|
|
|
|
|
|
|
include LayoutSupport
|
|
|
|
|
|
|
|
key :engine_name, String
|
|
|
|
key :layout_name, String, :required => true
|
2010-02-05 08:53:52 +00:00
|
|
|
key :layout_id, ObjectId, :required => true
|
2010-01-28 09:42:55 +00:00
|
|
|
|
|
|
|
belongs_to :layout
|
|
|
|
|
2010-02-05 08:53:52 +00:00
|
|
|
protected
|
|
|
|
|
|
|
|
def setup_default_value
|
|
|
|
super
|
|
|
|
|
|
|
|
if self.layout_name
|
|
|
|
self.layout_id = Layout.find_by_name( self.layout_name ).id
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
2010-01-14 10:30:53 +00:00
|
|
|
end
|