Sha256: 1b91c6b074b2125e0dfd488bcaaa4b67ff8aa6093683894233a61d9a9427a099

Contents?: true

Size: 1.41 KB

Versions: 55

Compression:

Stored size: 1.41 KB

Contents

module ActionController
  # Override the default form builder for all views rendered by this
  # controller and any of its descendants. Accepts a subclass of
  # +ActionView::Helpers::FormBuilder+.
  #
  # For example, given a form builder:
  #
  #   class AdminFormBuilder < ActionView::Helpers::FormBuilder
  #     def special_field(name)
  #     end
  #   end
  #
  # The controller specifies a form builder as its default:
  #
  #   class AdminAreaController < ApplicationController
  #     default_form_builder AdminFormBuilder
  #   end
  #
  # Then in the view any form using +form_for+ will be an instance of the
  # specified form builder:
  #
  #   <%= form_for(@instance) do |builder| %>
  #     <%= builder.special_field(:name) %>
  #   <% end %>
  module FormBuilder
    extend ActiveSupport::Concern

    included do
      class_attribute :_default_form_builder, instance_accessor: false
    end

    module ClassMethods
      # Set the form builder to be used as the default for all forms
      # in the views rendered by this controller and its subclasses.
      #
      # ==== Parameters
      # * <tt>builder</tt> - Default form builder, an instance of +ActionView::Helpers::FormBuilder+
      def default_form_builder(builder)
        self._default_form_builder = builder
      end
    end

    # Default form builder for the controller
    def default_form_builder
      self.class._default_form_builder
    end
  end
end

Version data entries

55 entries across 55 versions & 4 rubygems

Version Path
actionpack-5.1.7 lib/action_controller/form_builder.rb
actionpack-5.1.7.rc1 lib/action_controller/form_builder.rb
actionpack-5.1.6.2 lib/action_controller/form_builder.rb
actionpack-5.0.7.2 lib/action_controller/form_builder.rb
actionpack-5.1.6.1 lib/action_controller/form_builder.rb
actionpack-5.0.7.1 lib/action_controller/form_builder.rb
actionpack-5.1.6 lib/action_controller/form_builder.rb
actionpack-5.0.7 lib/action_controller/form_builder.rb
actionpack-5.1.5 lib/action_controller/form_builder.rb
actionpack-5.1.5.rc1 lib/action_controller/form_builder.rb
actionpack-5.1.4 lib/action_controller/form_builder.rb
actionpack-5.0.6 lib/action_controller/form_builder.rb
actionpack-5.1.4.rc1 lib/action_controller/form_builder.rb
actionpack-5.0.6.rc1 lib/action_controller/form_builder.rb
actionpack-5.1.3 lib/action_controller/form_builder.rb
actionpack-5.1.3.rc3 lib/action_controller/form_builder.rb
actionpack-5.0.5 lib/action_controller/form_builder.rb
actionpack-5.0.5.rc2 lib/action_controller/form_builder.rb
actionpack-5.1.3.rc2 lib/action_controller/form_builder.rb
actionpack-5.0.5.rc1 lib/action_controller/form_builder.rb