orbit-basic/app/controllers/application_controller.rb

35 lines
977 B
Ruby
Raw Normal View History

2009-05-07 16:53:18 +00:00
class ApplicationController < ActionController::Base
helper :all
protect_from_forgery
2009-06-19 09:31:10 +00:00
before_filter :set_locale
filter_parameter_logging :password
Liquid::Template.register_filter(SnippetFilter)
def render_liquid_page
if @page
@layout = @page.layout
@page_options ||= {}
2010-01-04 07:52:30 +00:00
@page_content = Liquid::Template.parse( @page.send( "content_#{I18n.locale}" ) ).render(@page_options)
@layout_content = (@page.layout)? @layout.send( "content_#{I18n.locale}" ) : "{{page_content}}"
render :text => Liquid::Template.parse(@layout_content).render( 'page_content' => @page_content )
else
render :text => '404 Not Found'
end
end
2009-06-19 09:31:10 +00:00
def set_locale
# update session if passed
if params[:locale] && VALID_LOCALES.include?( params[:locale] )
session[:locale] = params[:locale]
end
# set locale based on session or default
I18n.locale = session[:locale] || I18n.default_locale
end
2009-05-07 16:53:18 +00:00
end