method
find_template_extension_from_handler
v2.0.3 -
Show latest stable
- Class:
ActionView::Base
find_template_extension_from_handler(template_path, formatted = nil)private
No documentation available.
# File actionpack/lib/action_view/base.rb, line 490
def find_template_extension_from_handler(template_path, formatted = nil)
checked_template_path = formatted ? "#{template_path}.#{template_format}" : template_path
self.class.template_handler_extensions.each do |extension|
if template_exists?(checked_template_path, extension)
return formatted ? "#{template_format}.#{extension}" : extension.to_s
end
end
nil
end