Sha256: 8aca1008823bdc8f1e4c0872e6b3ca40f5feed2f7dbe175eba79e3f5384bb140

Contents?: true

Size: 455 Bytes

Versions: 23

Compression:

Stored size: 455 Bytes

Contents

module Agilibox::FormBackUrl
  def back_url_tag
    tag(:input,
      :type  => "hidden",
      :name  => "back_url",
      :value => (params[:back_url].presence || request.referer),
    )
  end

  def form_tag_with_body(html_options, content)
    output = form_tag_html(html_options)
    output.safe_concat(back_url_tag)
    output << content
    output.safe_concat("</form>")
  end
end

ActionView::Helpers::FormTagHelper.prepend(Agilibox::FormBackUrl)

Version data entries

23 entries across 23 versions & 1 rubygems

Version Path
agilibox-1.9.5 lib/agilibox/form_back_url.rb
agilibox-1.9.4 lib/agilibox/form_back_url.rb
agilibox-1.9.3 lib/agilibox/form_back_url.rb