public function __construct($viewName, array $attributes)
{
$this->_viewName = $viewName;
$this->_attributes = $attributes;
$this->_loaderPath = Path::join(ROOT_PATH, ApplicationPaths::getViewPath());
$this->_viewFilename = $viewName . self::EXTENSION;
$this->_viewPath = Path::join($this->_loaderPath, $this->_viewFilename);
}