instance method tag_options

Ruby on Rails 5.0.7.2

Last seen in v5.0.7.2 Private — implementation detail, not part of the public API

Available in: v2.2.3 v2.3.18 v3.0.20 v3.1.12 v3.2.22.5 v4.0.13 v4.1.16 v4.2.11.3 v5.0.7.2

Signature

tag_options(options, escape = true)

No documentation comment.

Parameters

options req
escape opt = true
Source
# File actionview/lib/action_view/helpers/tag_helper.rb, line 150
        def tag_options(options, escape = true)
          return if options.blank?
          output = ""
          sep    = " ".freeze
          options.each_pair do |key, value|
            if TAG_PREFIXES.include?(key) && value.is_a?(Hash)
              value.each_pair do |k, v|
                next if v.nil?
                output << sep
                output << prefix_tag_option(key, k, v, escape)
              end
            elsif BOOLEAN_ATTRIBUTES.include?(key)
              if value
                output << sep
                output << boolean_tag_option(key)
              end
            elsif !value.nil?
              output << sep
              output << tag_option(key, value, escape)
            end
          end
          output unless output.empty?
        end

Defined in actionview/lib/action_view/helpers/tag_helper.rb line 150 · View on GitHub · Improve this page · Find usages on GitHub

Defined in ActionView::Helpers::TagHelper

Type at least 2 characters to search.

Use the arrow keys to navigate results, Enter to open one, Escape to close.

Keyboard shortcuts

/
Focus search
⌘K / Ctrl-K
Command palette
?
This help
Esc
Close