aboutsummaryrefslogblamecommitdiffstats
path: root/actionpack/lib/action_view/helpers/tags/collection_radio_buttons.rb
blob: ba2035f0746e466e950ccf933816e1e946483b9a (plain) (tree)
1
2
3
4
5
6
7

                                                     


                 

                                         







                                                                                           
                  

                                                                                                      
 
                           
                           
                
                                                  

               
           



         
require 'action_view/helpers/tags/collection_helpers'

module ActionView
  module Helpers
    module Tags
      class CollectionRadioButtons < Base
        include CollectionHelpers

        class RadioButtonBuilder < Builder
          def radio_button(extra_html_options={})
            html_options = extra_html_options.merge(@input_html_options)
            @template_object.radio_button(@object_name, @method_name, @value, html_options)
          end
        end

        def render
          render_collection do |item, value, text, default_html_options|
            builder = instantiate_builder(RadioButtonBuilder, item, value, text, default_html_options)

            if block_given?
              yield builder
            else
              builder.radio_button + builder.label
            end
          end
        end
      end
    end
  end
end