method
tag_options
v3.0.0 -
Show latest stable
- Class:
ActionView::Helpers::TagHelper
tag_options(options, escape = true)private
No documentation available.
# File actionpack/lib/action_view/helpers/tag_helper.rb, line 117
def tag_options(options, escape = true)
unless options.blank?
attrs = []
options.each_pair do |key, value|
if BOOLEAN_ATTRIBUTES.include?(key)
attrs << %(#{key}="#{key}") if value
elsif !value.nil?
final_value = value.is_a?(Array) ? value.join(" ") : value
final_value = html_escape(final_value) if escape
attrs << %(#{key}="#{final_value}")
end
end
" #{attrs.sort * ' '}".html_safe unless attrs.empty?
end
end