Files
rockowa.com/autoload/admin/view/class.Page.php
2023-05-08 09:03:09 +02:00

25 lines
620 B
PHP

<?php
namespace admin\view;
class Page {
function show()
{
global $config;
$tpl = new \Savant3;
$tpl -> _langs = \System::getLangs();
$tpl -> _current_lang = \System::getSessionVar( 'current_lang' );
$tpl -> _content = \admin\controls\Page::getContent();
$tpl -> _p = \System::getSessionVar( 'page_type' );
$tpl -> _site_title = 'www.' . $config['page'];
if ( \System::getSessionVar( 'alert' ) )
{
$tpl -> _alert = \System::getSessionVar( 'alert' );
\System::setAlert( '' );
}
return $tpl -> fetch( 'templates/page.php' );
}
}
?>