method

render_template_with_layout?

Importance_0
v7.0.0 - Show latest stable - 0 notes - Class: RenderParser
render_template_with_layout?(render_type, options_hash) private

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File actionview/lib/action_view/render_parser.rb, line 164
        def render_template_with_layout?(render_type, options_hash)
          if render_type != :layout && options_hash.key?(:layout)
            parse_str(options_hash[:layout])
          end
        end
Register or log in to add new notes.