public
Description: This contains various plugins for Feather
Clone URL: git://github.com/eldiablo/feather-plugins.git
Click here to lend your support to: feather-plugins and make a donation at www.pledgie.com !
feather-plugins / feather-feeds / helpers / global_helpers.rb
100644 9 lines (8 sloc) 0.295 kb
1
2
3
4
5
6
7
8
9
module Merb
  module GlobalHelpers
    def feed_url(format = "rss")
      feed_settings = FeedSetting.current
      (feed_settings.external_feed_url.nil? || feed_settings.external_feed_url.empty?) ? "http://#{request.host}/articles.#{format}" : feed_settings.external_feed_url
    end
  end
end