Files
rm.rzeszow.pl/autoload/admin/view/class.Page.php
2023-09-04 21:59:34 +02:00

16 lines
348 B
PHP

<?php
namespace admin\view;
class Page {
public static function show()
{
$tpl = new \Savant3;
$tpl -> _content = \admin\controls\Page::getContent();
$tpl -> _page_type = \System::getSessionVar( 'page_type' );
$tpl -> _alert = \System::getSessionVar( 'alert' );
return $tpl -> fetch( 'other/page-main' );
}
}
?>