instance method tag_options

Ruby on Rails 3.1.12

Since v2.2.3 Last seen in v4.2.9 Private

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.9

Signature

tag_options(options, escape = true)

No documentation comment.

Parameters

options req
escape opt = true
Source
# File actionpack/lib/action_view/helpers/tag_helper.rb, line 131
        def tag_options(options, escape = true)
          unless options.blank?
            attrs = []
            options.each_pair do |key, value|
              if key.to_s == 'data' && value.is_a?(Hash)
                value.each do |k, v|
                  if !v.is_a?(String) && !v.is_a?(Symbol)
                    v = v.to_json
                  end
                  v = ERB::Util.html_escape(v) if escape
                  attrs << %(data-#{k.to_s.dasherize}="#{v}")
                end
              elsif BOOLEAN_ATTRIBUTES.include?(key)
                attrs << %(#{key}="#{key}") if value
              elsif !value.nil?
                final_value = value.is_a?(Array) ? value.join(" ") : value
                final_value = ERB::Util.html_escape(final_value) if escape
                attrs << %(#{key}="#{final_value}")
              end
            end
            " #{attrs.sort * ' '}".html_safe unless attrs.empty?
          end
        end

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

Defined in ActionView::Helpers::TagHelper

Type at least 2 characters to search.

↑↓ navigate · open · esc close