17 lines
425 B
PHP
Raw Normal View History

2017-03-11 02:51:06 +07:00
<?php
/**
2023-10-12 15:55:42 +07:00
* PHP Mikrotik Billing (https://github.com/hotspotbilling/phpnuxbill/)
* by https://t.me/ibnux
**/
2024-02-27 10:37:41 +07:00
if(Admin::getID()){
2025-02-07 15:19:04 +07:00
//r2(getUrl('dashboard'));
$handler = 'dashboard';
}else if(User::getID()){
//r2(getUrl('home'));
$handler = 'home';
2024-02-27 10:37:41 +07:00
}else{
2025-02-07 15:19:04 +07:00
//r2(getUrl('login'));
$handler = 'login';
2024-02-27 10:37:41 +07:00
}
2025-02-07 15:19:04 +07:00
include($root_path . File::pathFixer('system/controllers/' . $handler . '.php'));