module ActionView::Helpers::FormHelper
Public Instance Methods
form_for(*args, &block)
Also aliased as: form_for_without_haml_xss
Alias for: form_for_with_haml_xss
form_for_with_haml_xss(*args, &block)
click to toggle source
# File lib/haml/helpers/action_view_xss_mods.rb, line 29 def form_for_with_haml_xss(*args, &block) res = form_for_without_haml_xss(*args, &block) return Haml::Util.html_safe(res) if res.is_a?(String) return res end
Also aliased as: form_for