11 lines
238 B
PHP
Raw Normal View History

2017-03-11 02:51:06 +07:00
<?php
/**
* PHP Mikrotik Billing (https://ibnux.github.io/phpmixbill/)
2017-03-11 02:51:06 +07:00
**/
Class Router{
public static function _info($name){
$d = ORM::for_table('tbl_routers')->where('name',$name)->find_one();
return $d;
}
}