2012-09-13 10:31:44 +00:00
|
|
|
#encoding: utf-8
|
|
|
|
require "orbit_app/summary"
|
|
|
|
|
|
|
|
module OrbitApp
|
|
|
|
module Module
|
2012-11-29 06:21:46 +00:00
|
|
|
module Summary
|
2012-09-24 03:43:48 +00:00
|
|
|
include OrbitApp::Summary
|
2012-09-13 10:31:44 +00:00
|
|
|
|
|
|
|
class Item
|
|
|
|
def initialize()
|
|
|
|
@top = {:label => "全部內容有",:value=> "2071"}
|
|
|
|
@items = [{:label => "新聞",:value=> "20"}]
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|