aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_view/helpers/tags/checkable.rb
diff options
context:
space:
mode:
authorRafael Mendonça França <rafaelmfranca@gmail.com>2012-01-17 18:52:48 -0300
committerRafael Mendonça França <rafaelmfranca@gmail.com>2012-01-17 18:52:48 -0300
commit6f1bf526d7f1869b47f6047c4285c673bb06d0ec (patch)
tree5370cdc6e980e4a223c5ac88251d361a62a0a9f2 /actionpack/lib/action_view/helpers/tags/checkable.rb
parent8b4c74f77cd7fe3f2264c18f4ddc7dd495493c4b (diff)
downloadrails-6f1bf526d7f1869b47f6047c4285c673bb06d0ec.tar.gz
rails-6f1bf526d7f1869b47f6047c4285c673bb06d0ec.tar.bz2
rails-6f1bf526d7f1869b47f6047c4285c673bb06d0ec.zip
Extract input_checked? to a module
Diffstat (limited to 'actionpack/lib/action_view/helpers/tags/checkable.rb')
-rw-r--r--actionpack/lib/action_view/helpers/tags/checkable.rb16
1 files changed, 16 insertions, 0 deletions
diff --git a/actionpack/lib/action_view/helpers/tags/checkable.rb b/actionpack/lib/action_view/helpers/tags/checkable.rb
new file mode 100644
index 0000000000..b97c0c68d7
--- /dev/null
+++ b/actionpack/lib/action_view/helpers/tags/checkable.rb
@@ -0,0 +1,16 @@
+module ActionView
+ module Helpers
+ module Tags
+ module Checkable
+ def input_checked?(object, options)
+ if options.has_key?("checked")
+ checked = options.delete "checked"
+ checked == true || checked == "checked"
+ else
+ checked?(value(object))
+ end
+ end
+ end
+ end
+ end
+end