ciudadanointeligente/partidopublico

View on GitHub
app/helpers/layouts_helper.rb

Summary

Maintainability
A
0 mins
Test Coverage
module LayoutsHelper
  def parent_layout(layout)
    @view_flow.set(:layout, output_buffer)
    output = render(:file => "layouts/#{layout}")
    self.output_buffer = ActionView::OutputBuffer.new(output)
  end
end