ActionView::Helpers::FormHelper

Public Instance Methods

form_for(object_name, *args, &proc) click to toggle source
Also aliased as: form_for_without_haml, form_for_without_haml, form_for_without_haml_xss
Alias for: form_for_with_haml
form_for_with_haml(object_name, *args, &proc) click to toggle source
# File lib/haml/helpers/action_view_mods.rb, line 175
def form_for_with_haml(object_name, *args, &proc)
  wrap_block = block_given? && is_haml? && block_is_haml?(proc)
  if wrap_block
    oldproc = proc
    proc = proc {|*args| with_tabs(1) {oldproc.call(*args)}}
  end
  res = form_for_without_haml(object_name, *args, &proc)
  res << "\n" if wrap_block
  res
end
Also aliased as: form_for, form_for
form_for_with_haml_xss(*args, &block) click to toggle source
# File lib/haml/helpers/xss_mods.rb, line 131
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
form_for_without_haml(object_name, *args, &proc) click to toggle source
Alias for: form_for
form_for_without_haml_xss(object_name, *args, &proc) click to toggle source
Alias for: form_for

[Validate]

Generated with the Darkfish Rdoc Generator 2.