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.
orbit-4-1/lib/orbit_app/module/summary.rb

20 lines
343 B
Ruby

#encoding: utf-8
require "orbit_app/summary"
module OrbitApp
module Module
module Summary
include OrbitApp::Summary
class Item
def initialize()
@top = {:label => "全部內容有",:value=> "2071"}
@items = [{:label => "新聞",:value=> "20"}]
end
end
end
end
end