method
formatted_polymorphic_path
v2.3.8 -
Show latest stable
- Class:
ActionController::PolymorphicRoutes
formatted_polymorphic_path(record_or_hash, options = {})public
No documentation available.
# File actionpack/lib/action_controller/polymorphic_routes.rb, line 140
def formatted_polymorphic_path(record_or_hash, options = {})
ActiveSupport::Deprecation.warn("formatted_polymorphic_path has been deprecated. Please pass :format to the polymorphic_path method instead", caller)
options[:format] = record_or_hash.pop if record_or_hash === Array
polymorphic_url(record_or_hash, options.merge(:routing_type => :path))
end