Sha256: 272d51e57e67661527b8ef363f442977326851d6eede1e257be8a50df095210f

Contents?: true

Size: 1.52 KB

Versions: 18

Compression:

Stored size: 1.52 KB

Contents

# frozen_string_literal: true

# :markup: markdown

module ActionController
  # # Action Controller Form Builder
  #
  # 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
      # *   `builder` - 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

18 entries across 18 versions & 2 rubygems

Version Path
actionpack-7.2.2.1 lib/action_controller/form_builder.rb
actionpack-7.2.2 lib/action_controller/form_builder.rb
actionpack-7.2.1.2 lib/action_controller/form_builder.rb
actionpack-7.2.1.1 lib/action_controller/form_builder.rb
actionpack-8.0.0.beta1 lib/action_controller/form_builder.rb
omg-actionpack-8.0.0.alpha9 lib/action_controller/form_builder.rb
omg-actionpack-8.0.0.alpha8 lib/action_controller/form_builder.rb
omg-actionpack-8.0.0.alpha7 lib/action_controller/form_builder.rb
omg-actionpack-8.0.0.alpha4 lib/action_controller/form_builder.rb
omg-actionpack-8.0.0.alpha3 lib/action_controller/form_builder.rb
omg-actionpack-8.0.0.alpha2 lib/action_controller/form_builder.rb
omg-actionpack-8.0.0.alpha1 lib/action_controller/form_builder.rb
actionpack-7.2.1 lib/action_controller/form_builder.rb
actionpack-7.2.0 lib/action_controller/form_builder.rb
actionpack-7.2.0.rc1 lib/action_controller/form_builder.rb
actionpack-7.2.0.beta3 lib/action_controller/form_builder.rb
actionpack-7.2.0.beta2 lib/action_controller/form_builder.rb
actionpack-7.2.0.beta1 lib/action_controller/form_builder.rb