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