View file application/routing/index/index.php

File size: 228B
<?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();