Method deprecated or moved
This method is deprecated or moved on the latest stable version.
The last existing version (v2.0.3) is shown here.
full_template_path(template_path, extension)
public
Gets the full template path
with base path for the given template_path and extension.
full_template_path('users/show', 'html.erb')
# File actionpack/lib/action_view/base.rb, line 382
def full_template_path(template_path, extension)
if @@cache_template_extensions
(@@cached_base_paths[template_path] ||= {})[extension.to_s] ||= find_full_template_path(template_path, extension)
else
find_full_template_path(template_path, extension)
end
end