Files
zaufane.pl/autoload/admin/view/class.Page.php
2024-11-04 19:13:57 +01:00

19 lines
302 B
PHP

<?php
namespace admin\view;
class Page {
public static function show()
{
global $user;
if ( !$user || !$user['admin'] )
return \admin\view\Users::login_form();
$tpl = new \Tpl;
$tpl -> content = \admin\Site::route();
return $tpl -> render( 'site/main-layout' );
}
}
?>