From a769b88819ac1ad1d89a1f9138bf1546091d3744 Mon Sep 17 00:00:00 2001 From: Jeremy Kemper Date: Sun, 3 Sep 2006 15:59:18 +0000 Subject: button_to accepts :method so you can PUT and DELETE with it. Closes #6005. git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@4914 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- actionpack/lib/action_view/helpers/url_helper.rb | 23 ++++++++++++++++------- 1 file changed, 16 insertions(+), 7 deletions(-) (limited to 'actionpack/lib/action_view/helpers/url_helper.rb') diff --git a/actionpack/lib/action_view/helpers/url_helper.rb b/actionpack/lib/action_view/helpers/url_helper.rb index 77f217b2d4..42c28335d5 100644 --- a/actionpack/lib/action_view/helpers/url_helper.rb +++ b/actionpack/lib/action_view/helpers/url_helper.rb @@ -93,12 +93,14 @@ module ActionView # Example 2: # # button_to "Destroy", { :action => 'destroy', :id => 3 }, - # :confirm => "Are you sure?" + # :confirm => "Are you sure?", :method => :delete # # Generates the following HTML (sans formatting): # #
- #
+ # + # #
#
@@ -113,18 +115,25 @@ module ActionView def button_to(name, options = {}, html_options = nil) html_options = (html_options || {}).stringify_keys convert_boolean_attributes!(html_options, %w( disabled )) - + + method_tag = '' + if (method = html_options.delete('method')) && %w{put delete}.include?(method.to_s) + method_tag = tag('input', :type => 'hidden', :name => '_method', :value => method.to_s) + end + + form_method = method.to_s == 'get' ? 'get' : 'post' + if confirm = html_options.delete("confirm") html_options["onclick"] = "return #{confirm_javascript_function(confirm)};" end - + url = options.is_a?(String) ? options : url_for(options) name ||= url - + html_options.merge!("type" => "submit", "value" => name) - "
" + - tag("input", html_options) + "
" + "
" + + method_tag + tag("input", html_options) + "
" end -- cgit v1.2.3