Class: ActionView::Helpers::FormBuilder
- Defined in:
- lib/action_view/helpers/form_helper.rb,
lib/action_view/helpers/date_helper.rb,
lib/action_view/helpers/form_options_helper.rb
Overview
:nodoc:
Instance Attribute Summary collapse
-
#object ⇒ Object
Returns the value of attribute object.
-
#object_name ⇒ Object
Returns the value of attribute object_name.
-
#options ⇒ Object
Returns the value of attribute options.
Instance Method Summary collapse
- #check_box(method, options = {}, checked_value = "1", unchecked_value = "0") ⇒ Object
- #collection_select(method, collection, value_method, text_method, options = {}, html_options = {}) ⇒ Object
- #country_select(method, priority_countries = nil, options = {}, html_options = {}) ⇒ Object
- #date_select(method, options = {}) ⇒ Object
- #datetime_select(method, options = {}) ⇒ Object
- #error_message_on(method, prepend_text = "", append_text = "", css_class = "formError") ⇒ Object
- #error_messages(options = {}) ⇒ Object
- #fields_for(record_or_name_or_array, *args, &block) ⇒ Object
-
#initialize(object_name, object, template, options, proc) ⇒ FormBuilder
constructor
A new instance of FormBuilder.
- #label(method, text = nil, options = {}) ⇒ Object
- #radio_button(method, tag_value, options = {}) ⇒ Object
- #select(method, choices, options = {}, html_options = {}) ⇒ Object
- #submit(value = "Save changes", options = {}) ⇒ Object
- #time_select(method, options = {}) ⇒ Object
- #time_zone_select(method, priority_zones = nil, options = {}, html_options = {}) ⇒ Object
Constructor Details
#initialize(object_name, object, template, options, proc) ⇒ FormBuilder
Returns a new instance of FormBuilder.
630 631 632 |
# File 'lib/action_view/helpers/form_helper.rb', line 630 def initialize(object_name, object, template, , proc) @object_name, @object, @template, @options, @proc = object_name, object, template, , proc end |
Instance Attribute Details
#object ⇒ Object
Returns the value of attribute object.
628 629 630 |
# File 'lib/action_view/helpers/form_helper.rb', line 628 def object @object end |
#object_name ⇒ Object
Returns the value of attribute object_name.
628 629 630 |
# File 'lib/action_view/helpers/form_helper.rb', line 628 def object_name @object_name end |
#options ⇒ Object
Returns the value of attribute options.
628 629 630 |
# File 'lib/action_view/helpers/form_helper.rb', line 628 def @options end |
Instance Method Details
#check_box(method, options = {}, checked_value = "1", unchecked_value = "0") ⇒ Object
664 665 666 |
# File 'lib/action_view/helpers/form_helper.rb', line 664 def check_box(method, = {}, checked_value = "1", unchecked_value = "0") @template.check_box(@object_name, method, .merge(:object => @object), checked_value, unchecked_value) end |
#collection_select(method, collection, value_method, text_method, options = {}, html_options = {}) ⇒ Object
423 424 425 |
# File 'lib/action_view/helpers/form_options_helper.rb', line 423 def collection_select(method, collection, value_method, text_method, = {}, = {}) @template.collection_select(@object_name, method, collection, value_method, text_method, .merge(:object => @object), ) end |
#country_select(method, priority_countries = nil, options = {}, html_options = {}) ⇒ Object
427 428 429 |
# File 'lib/action_view/helpers/form_options_helper.rb', line 427 def country_select(method, priority_countries = nil, = {}, = {}) @template.country_select(@object_name, method, priority_countries, .merge(:object => @object), ) end |
#date_select(method, options = {}) ⇒ Object
676 677 678 |
# File 'lib/action_view/helpers/date_helper.rb', line 676 def date_select(method, = {}) @template.date_select(@object_name, method, .merge(:object => @object)) end |
#datetime_select(method, options = {}) ⇒ Object
684 685 686 |
# File 'lib/action_view/helpers/date_helper.rb', line 684 def datetime_select(method, = {}) @template.datetime_select(@object_name, method, .merge(:object => @object)) end |
#error_message_on(method, prepend_text = "", append_text = "", css_class = "formError") ⇒ Object
672 673 674 |
# File 'lib/action_view/helpers/form_helper.rb', line 672 def (method, prepend_text = "", append_text = "", css_class = "formError") @template.(@object, method, prepend_text, append_text, css_class) end |
#error_messages(options = {}) ⇒ Object
676 677 678 |
# File 'lib/action_view/helpers/form_helper.rb', line 676 def ( = {}) @template.(@object_name, .merge(:object => @object)) end |
#fields_for(record_or_name_or_array, *args, &block) ⇒ Object
643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 |
# File 'lib/action_view/helpers/form_helper.rb', line 643 def fields_for(record_or_name_or_array, *args, &block) case record_or_name_or_array when String, Symbol name = "#{object_name}[#{record_or_name_or_array}]" when Array object = record_or_name_or_array.last name = "#{object_name}[#{ActionController::RecordIdentifier.singular_class_name(object)}]" args.unshift(object) else object = record_or_name_or_array name = "#{object_name}[#{ActionController::RecordIdentifier.singular_class_name(object)}]" args.unshift(object) end @template.fields_for(name, *args, &block) end |
#label(method, text = nil, options = {}) ⇒ Object
660 661 662 |
# File 'lib/action_view/helpers/form_helper.rb', line 660 def label(method, text = nil, = {}) @template.label(@object_name, method, text, .merge(:object => @object)) end |
#radio_button(method, tag_value, options = {}) ⇒ Object
668 669 670 |
# File 'lib/action_view/helpers/form_helper.rb', line 668 def (method, tag_value, = {}) @template.(@object_name, method, tag_value, .merge(:object => @object)) end |
#select(method, choices, options = {}, html_options = {}) ⇒ Object
419 420 421 |
# File 'lib/action_view/helpers/form_options_helper.rb', line 419 def select(method, choices, = {}, = {}) @template.select(@object_name, method, choices, .merge(:object => @object), ) end |
#submit(value = "Save changes", options = {}) ⇒ Object
680 681 682 |
# File 'lib/action_view/helpers/form_helper.rb', line 680 def submit(value = "Save changes", = {}) @template.submit_tag(value, .reverse_merge(:id => "#{object_name}_submit")) end |
#time_select(method, options = {}) ⇒ Object
680 681 682 |
# File 'lib/action_view/helpers/date_helper.rb', line 680 def time_select(method, = {}) @template.time_select(@object_name, method, .merge(:object => @object)) end |
#time_zone_select(method, priority_zones = nil, options = {}, html_options = {}) ⇒ Object
431 432 433 |
# File 'lib/action_view/helpers/form_options_helper.rb', line 431 def time_zone_select(method, priority_zones = nil, = {}, = {}) @template.time_zone_select(@object_name, method, priority_zones, .merge(:object => @object), ) end |