mirror of
https://github.com/hotspotbilling/phpnuxbill.git
synced 2025-02-24 15:36:33 +08:00
16 lines
No EOL
355 B
PHP
16 lines
No EOL
355 B
PHP
<?php
|
|
/**
|
|
* PHP Mikrotik Billing (https://ibnux.github.io/phpmixbill/)
|
|
**/
|
|
_auth();
|
|
$ui->assign('_title', $_L['Private_Message'].'- '. $config['CompanyName']);
|
|
$ui->assign('_system_menu', 'pm');
|
|
|
|
$action = $routes['1'];
|
|
$user = User::_info();
|
|
$ui->assign('_user', $user);
|
|
|
|
switch ($action) {
|
|
default:
|
|
$ui->display('404.tpl');
|
|
} |