2013-07-18 04:03:18 +00:00
|
|
|
module OrbitApp
|
|
|
|
module Module
|
|
|
|
module VisitorCounter
|
|
|
|
Version = "0.1"
|
|
|
|
|
|
|
|
def display_visitors(options={})
|
2013-07-19 08:59:08 +00:00
|
|
|
Site.first.visitor_counters["total"]
|
2013-07-18 04:03:18 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def display_visitors_today
|
2013-07-19 08:59:08 +00:00
|
|
|
Site.first.visitor_counters["today"]
|
2013-07-18 04:03:18 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def display_visitors_this_week
|
2013-07-19 08:59:08 +00:00
|
|
|
Site.first.visitor_counters["this_week"]
|
2013-07-18 04:03:18 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def display_visitors_this_month
|
2013-07-19 08:59:08 +00:00
|
|
|
Site.first.visitor_counters["this_month"]
|
2013-07-18 04:03:18 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def display_visitors_this_year
|
2013-07-19 08:59:08 +00:00
|
|
|
Site.first.visitor_counters["this_year"]
|
2013-07-18 04:03:18 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
end # of VisitorCounter
|
|
|
|
end # of Module
|
|
|
|
end # of OrbitApp
|