Sha256: deb01e913fafb866ef9b765f2bb41c0f86c77edb468d73327b73c71be9d3c9ce

Contents?: true

Size: 731 Bytes

Versions: 42

Compression:

Stored size: 731 Bytes

Contents

# frozen_string_literal: true

module ActionView
  module Helpers
    module Tags # :nodoc:
      class TimeZoneSelect < Base # :nodoc:
        include SelectRenderer
        include FormOptionsHelper

        def initialize(object_name, method_name, template_object, priority_zones, options, html_options)
          @priority_zones = priority_zones
          @html_options   = html_options

          super(object_name, method_name, template_object, options)
        end

        def render
          select_content_tag(
            time_zone_options_for_select(value || @options[:default], @priority_zones, @options[:model] || ActiveSupport::TimeZone), @options, @html_options
          )
        end
      end
    end
  end
end

Version data entries

42 entries across 42 versions & 6 rubygems

Version Path
minato_ruby_api_client-0.2.2 vendor/bundle/ruby/3.2.0/gems/actionview-7.1.3.4/lib/action_view/helpers/tags/time_zone_select.rb
actionview-8.0.1 lib/action_view/helpers/tags/time_zone_select.rb
actionview-8.0.0.1 lib/action_view/helpers/tags/time_zone_select.rb
actionview-7.2.2.1 lib/action_view/helpers/tags/time_zone_select.rb
actionview-7.1.5.1 lib/action_view/helpers/tags/time_zone_select.rb
actionview-8.0.0 lib/action_view/helpers/tags/time_zone_select.rb
actionview-7.2.2 lib/action_view/helpers/tags/time_zone_select.rb
actionview-7.1.5 lib/action_view/helpers/tags/time_zone_select.rb
actionview-8.0.0.rc2 lib/action_view/helpers/tags/time_zone_select.rb
actionview-7.2.1.2 lib/action_view/helpers/tags/time_zone_select.rb
actionview-7.1.4.2 lib/action_view/helpers/tags/time_zone_select.rb
actionview-8.0.0.rc1 lib/action_view/helpers/tags/time_zone_select.rb
actionview-7.2.1.1 lib/action_view/helpers/tags/time_zone_select.rb
actionview-7.1.4.1 lib/action_view/helpers/tags/time_zone_select.rb
actionview-8.0.0.beta1 lib/action_view/helpers/tags/time_zone_select.rb
omg-actionview-8.0.0.alpha9 lib/action_view/helpers/tags/time_zone_select.rb
omg-actionview-8.0.0.alpha8 lib/action_view/helpers/tags/time_zone_select.rb
omg-actionview-8.0.0.alpha7 lib/action_view/helpers/tags/time_zone_select.rb
omg-actionview-8.0.0.alpha4 lib/action_view/helpers/tags/time_zone_select.rb
omg-actionview-8.0.0.alpha3 lib/action_view/helpers/tags/time_zone_select.rb