This repository has been archived on 2024-03-16. You can view files and clone it, but cannot push or open issues or pull requests.
2010-01-14 10:30:53 +00:00
|
|
|
class Component < Item
|
|
|
|
|
|
|
|
include LayoutSupport
|
|
|
|
|
|
|
|
key :engine_name, String
|
|
|
|
key :layout_name, String, :required => true
|
2010-01-28 09:42:55 +00:00
|
|
|
key :layout_id, String, :required => true
|
|
|
|
|
|
|
|
belongs_to :layout
|
|
|
|
|
2010-01-14 10:30:53 +00:00
|
|
|
end
|