forked from kevinowino869/mitrobill
Sample
admin
docs
pages_template
qrcode
system
autoload
controllers
accounts.php
admin.php
autoload.php
bandwidth.php
callback.php
community.php
customers.php
dashboard.php
default.php
export.php
home.php
index.html
login.php
logout.php
message.php
order.php
page.php
pages.php
paymentgateway.php
pm.php
pool.php
prepaid.php
register.php
reports.php
routers.php
services.php
settings.php
voucher.php
install
lan
paymentgateway
uploads
vendors
boot.php
config.sample.php
cron.php
index.html
orm.php
radius.php
ui
.gitignore
LICENSE
README.md
index.php
13 lines
301 B
PHP
13 lines
301 B
PHP
<?php
|
|
/**
|
|
* PHP Mikrotik Billing (https://ibnux.github.io/phpmixbill/)
|
|
**/
|
|
_auth();
|
|
$ui->assign('_title', 'Community - '. $config['CompanyName']);
|
|
$ui->assign('_system_menu', 'community');
|
|
|
|
$action = $routes['1'];
|
|
$admin = Admin::_info();
|
|
$ui->assign('_admin', $admin);
|
|
|
|
$ui->display('community.tpl'); |