29 lines
658 B
Ruby
29 lines
658 B
Ruby
module OrbitApp
|
|
module Module
|
|
module VisitorCounter
|
|
Version = "0.1"
|
|
|
|
def display_visitors(options={})
|
|
Site.first.visitor_counters["total"]
|
|
end
|
|
|
|
def display_visitors_today
|
|
Site.first.visitor_counters["today"]
|
|
end
|
|
|
|
def display_visitors_this_week
|
|
Site.first.visitor_counters["this_week"]
|
|
end
|
|
|
|
def display_visitors_this_month
|
|
Site.first.visitor_counters["this_month"]
|
|
end
|
|
|
|
def display_visitors_this_year
|
|
Site.first.visitor_counters["this_year"]
|
|
end
|
|
|
|
end # of VisitorCounter
|
|
end # of Module
|
|
end # of OrbitApp
|