mirror of
https://github.com/hotspotbilling/phpnuxbill.git
synced 2025-02-25 16:06:32 +08:00
12 lines
No EOL
261 B
PHP
12 lines
No EOL
261 B
PHP
<?php
|
|
/**
|
|
* PHP Mikrotik Billing (https://github.com/hotspotbilling/phpnuxbill/)
|
|
**/
|
|
|
|
Class Admin{
|
|
public static function _info(){
|
|
$id = $_SESSION['aid'];
|
|
$d = ORM::for_table('tbl_users')->find_one($id);
|
|
return $d;
|
|
}
|
|
} |