mirror of
https://github.com/hotspotbilling/phpnuxbill.git
synced 2025-02-24 15:36:33 +08:00
11 lines
No EOL
238 B
PHP
11 lines
No EOL
238 B
PHP
<?php
|
|
/**
|
|
* PHP Mikrotik Billing (https://ibnux.github.io/phpmixbill/)
|
|
**/
|
|
|
|
Class Router{
|
|
public static function _info($name){
|
|
$d = ORM::for_table('tbl_routers')->where('name',$name)->find_one();
|
|
return $d;
|
|
}
|
|
} |