zeus.ugent.be/lib/helpers/events.rb

26 lines
627 B
Ruby
Raw Normal View History

2016-09-13 16:12:52 +00:00
require 'uri'
2016-08-23 23:01:17 +00:00
module EventsHelper
def all_events
@items.find_all('/events/*/*') + grouped_events
end
def grouped_events
@items.find_all('/events/*/*/main.md')
end
def sub_events(grouped_event)
if grouped_event.identifier =~ /main.md/
query = grouped_event.identifier.to_s.split('/')[0..-2].join('/') + '/*'
@items.find_all(query).reject do |i|
i.identifier =~ /main.md/
end
else
[]
end
end
2016-09-13 16:12:52 +00:00
def locationlink(location)
"https://www.google.com/maps/embed/v1/place?key=AIzaSyBDTmw7LtDG28o9QjCnNucAJv2zTZpLjJU&q=#{URI.escape(location)}" if location
end
2016-08-23 23:01:17 +00:00
end