public function getContentPage() {
return file_get_contents("templates/" . $this->_page_file . ".php");
}
public function renderPhpFile($_file_, $_params_ = [])
{
ob_start();
ob_implicit_flush(false);
extract($_params_, EXTR_OVERWRITE);
require($_file_);
return ob_get_clean();
}