View file application/routing/index/index.php
<?PHP
if(empty($_SESSION['id'])) {
require(__DIR__ . '/../account/auth.php');
die;
}
$_PAGE['name'] = getLang('routing_messenger');
tpl()
->Start('sample')
->Content(tpl()->Get('index/index'))
->Show();