summaryrefslogtreecommitdiff
path: root/app/helpers/link_helper.rb
blob: 68586c1072602cb50afc2b8ee5977e935b79ee17 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
module LinkHelper
  
  def link_to_path path
    url_for(
      :controller => :content,
      :action     => :render_page,
      :language   => I18n.locale,
      :page_path  => path
    )
  end
  
end