public Method

Base.append_view_path(path)

Adds a view_path to the end of the view_paths array. This change affects the current request only.

self.append_view_path("views/default")
self.append_view_path(["views/default", "views/custom"])

Source Code

# File action_controller/base.rb, line 673
def append_view_path(path)
  @template.finder.append_view_path(path)  # Mutex needed
end
Comments

Have your say
Please use Textile formatting (click here for a cheat sheet). Use <code/> and <pre/> for code samples.
Click here to login with OpenID to to post comments.