Base class for all views. A view is something that knows how to render itself for display within an XHtml page. Views are arranged in a hierarchy of views within views and when the top level view is asked to render itself it renders the entire hierarchy.
Definition at line 43 of file View.php.
Renders a div element with a id or class attribute set to the type of the view, (depending on the value returned by isUniqueToAPage()), and containing the content of any matching template found in the themes/<themename>/ directory if it exists, marked by begin/end comments, and the content of the view rendered by renderContent(). All are correctly indented by indent().
If the template does not exist in the active theme folder, it will attempt to locate the file in the themes/default/templates folder and include it if it exists.
Definition at line 83 of file View.php.