DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
Themeable Views In Ruby
class ApplicationController < ActionController::Base
before_filter :choose_theme
private
def choose_theme
ActionController::Base.template_root = File.join(RAILS_ROOT, 'app/views', @params['theme'])
end
end






Comments
Snippets Manager replied on Mon, 2007/04/30 - 4:15pm
Snippets Manager replied on Mon, 2007/04/30 - 4:15pm