class ActionView::Helpers::Tags::CollectionCheckBoxes::CheckBoxBuilder

:nodoc:

def checkbox(extra_html_options = {})

:nodoc:
def checkbox(extra_html_options = {})
  html_options = extra_html_options.merge(@input_html_options)
  html_options[:multiple] = true
  html_options[:skip_default_ids] = false
  @template_object.checkbox(@object_name, @method_name, html_options, @value, nil)
end