method

new

rails latest stable - Class: ActionView::PartialTemplate

Method deprecated or moved

This method is deprecated or moved on the latest stable version. The last existing version (v2.1.0) is shown here.

new(view, partial_path, object = nil, locals = {})
public

No documentation available.

# File actionpack/lib/action_view/partial_template.rb, line 6
    def initialize(view, partial_path, object = nil, locals = {})
      @path, @variable_name = extract_partial_name_and_path(view, partial_path)
      super(view, @path, true, locals)
      add_object_to_local_assigns!(object)

      # This is needed here in order to compile template with knowledge of 'counter'
      initialize_counter
      
      # Prepare early. This is a performance optimization for partial collections
      prepare!
    end