X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/3e82a36743f1be6eda2098e9e050dd0c5edcda55..9e3dc420f334c936c6d4287a0898cebc2177a852:/app/helpers/banner_helper.rb diff --git a/app/helpers/banner_helper.rb b/app/helpers/banner_helper.rb index 589df769a..af7d5a643 100644 --- a/app/helpers/banner_helper.rb +++ b/app/helpers/banner_helper.rb @@ -1,26 +1,7 @@ module BannerHelper - def all_banners() - { - :sotmus2016 => { - :id => 'sotmus2016', - :alt => 'State of the Map US 2016', - :link => 'http://stateofthemap.us/', - :img => 'banners/sotmus-2016.jpg', - :enddate => '2016-jul-23' - }, - :sotm2016 => { - :id => 'sotm2016', - :alt => 'State of the Map 2016', - :link => 'http://2016.stateofthemap.org/', - :img => 'banners/sotm-2016.jpg', - :enddate => '2016-sep-23' - } - } - end - def active_banners() - all_banners().reject do |k,v| + BANNERS.reject do |k,v| enddate = v[:enddate] parsed = (enddate and Date.parse enddate rescue nil) parsed.is_a?(Date) and parsed.past?