instance method
tag_options
Ruby on Rails 4.1.16
Since v2.2.3 Last seen in v4.2.9 PrivateSignature
tag_options(options, escape = true)
No documentation comment.
Parameters
-
optionsreq -
escapeopt = true
Source
# File actionview/lib/action_view/helpers/tag_helper.rb, line 140
def tag_options(options, escape = true)
return if options.blank?
attrs = []
options.each_pair do |key, value|
if key.to_s == 'data' && value.is_a?(Hash)
value.each_pair do |k, v|
attrs << data_tag_option(k, v, escape)
end
elsif BOOLEAN_ATTRIBUTES.include?(key)
attrs << boolean_tag_option(key) if value
elsif !value.nil?
attrs << tag_option(key, value, escape)
end
end
" #{attrs.sort! * ' '}" unless attrs.empty?
end
Defined in actionview/lib/action_view/helpers/tag_helper.rb line 140
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in ActionView::Helpers::TagHelper