phpnuxbill/system/autoload/Router.php
2022-09-05 15:12:00 +07:00

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;
}
}