Flowdock
method

to_time_zone_select_tag

Importance_0
v3.1.0 - Show latest stable - 0 notes - Class: ActionView::Helpers::InstanceTag
to_time_zone_select_tag(priority_zones, options, html_options) public

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File actionpack/lib/action_view/helpers/form_options_helper.rb, line 583
      def to_time_zone_select_tag(priority_zones, options, html_options)
        html_options = html_options.stringify_keys
        add_default_name_and_id(html_options)
        value = value(object)
        content_tag("select",
          add_options(
            time_zone_options_for_select(value || options[:default], priority_zones, options[:model] || ActiveSupport::TimeZone),
            options, value
          ), html_options
        )
      end
Register or log in to add new notes.