Jeff PHP framework
0.99
Modular, extensible, OOP, MVC, lightweight php framework designed to ease the programmers in the development of web applications.
|
Class which renders the html document. More...
Public Member Functions | |
__construct () | |
Constructs the document instance. | |
render () | |
Rendering of the whole document. | |
Static Public Member Functions | |
static | errorMessages () |
Alert system errors if present. | |
Private Member Functions | |
getTemplate () | |
Retrieves the template object from the template factory. | |
initHeadVariables () | |
Initialization of some registry properties used in the head tag. | |
Private Attributes | |
$_registry | |
the registry singleton instance | |
$_template | |
the active template instance |
Class which renders the html document.
Definition at line 21 of file document.class.php.
Constructs the document instance.
Retrieves the template instance to use. The template object is created by a factory class which returns the proper template instance depending on the requested url.
The template instance represents a global template, the one which contains the whole html code and the modules views which may be considered as local templates.
Definition at line 44 of file document.class.php.
document::getTemplate | ( | ) | [private] |
Retrieves the template object from the template factory.
Definition at line 115 of file document.class.php.
document::initHeadVariables | ( | ) | [private] |
Initialization of some registry properties used in the head tag.
Definition at line 72 of file document.class.php.
document::render | ( | ) |
Rendering of the whole document.
Definition at line 56 of file document.class.php.
document::$_registry [private] |
the registry singleton instance
Definition at line 26 of file document.class.php.
document::$_template [private] |
the active template instance
Definition at line 31 of file document.class.php.