Lang class

This commit is contained in:
Ibnu Maksum 2022-09-10 16:08:10 +07:00
parent a7fd02df12
commit 9154c10c45
No known key found for this signature in database
GPG Key ID: 7FC82848810579E5
2 changed files with 11 additions and 6 deletions

11
system/autoload/Lang.php Normal file
View File

@ -0,0 +1,11 @@
<?php
/**
* PHP Mikrotik Billing (https://ibnux.github.io/phpmixbill/)
**/
class Lang {
public static function T($var) {
return Lang($var);
}
}

View File

@ -47,12 +47,6 @@ function _get($param, $defvalue = '')
}
}
class Lang {
public static function T($var) {
return Lang($var);
}
}
require('system/orm.php');