12 lines
261 B
PHP
Raw Normal View History

2017-03-11 02:51:06 +07:00
<?php
/**
2022-10-16 14:50:24 +07:00
* PHP Mikrotik Billing (https://github.com/hotspotbilling/phpnuxbill/)
2017-03-11 02:51:06 +07:00
**/
Class Admin{
public static function _info(){
$id = $_SESSION['aid'];
$d = ORM::for_table('tbl_users')->find_one($id);
return $d;
}
}