forked from kevinowino869/mitrobill
.github
admin
docs
install
pages_template
qrcode
scan
system
autoload
cache
controllers
accounts.php
admin.php
autoload.php
autoload_user.php
bandwidth.php
callback.php
community.php
coupons.php
customers.php
customfield.php
dashboard.php
default.php
export.php
forgot.php
home.php
index.html
login.php
logout.php
logs.php
mail.php
maps.php
message.php
order.php
page.php
pages.php
paymentgateway.php
plan.php
plugin.php
pluginmanager.php
pool.php
radius.php
register.php
reports.php
routers.php
search_user.php
services.php
settings.php
voucher.php
widgets.php
devices
lan
paymentgateway
plugin
uploads
vendor
widgets
.htaccess
api.php
boot.php
composer.json
composer.lock
cron.php
cron_reminder.php
index.html
orm.php
updates.json
ui
.gitignore
.htaccess_firewall
CHANGELOG.md
Dockerfile
LICENSE
README.md
composer.json
config.sample.php
docker-compose.example.yml
favicon.ico
index.php
init.php
radius.php
update.php
version.json
21 lines
588 B
PHP
21 lines
588 B
PHP
<?php
|
|
/**
|
|
* PHP Mikrotik Billing (https://github.com/hotspotbilling/phpnuxbill/)
|
|
* by https://t.me/ibnux
|
|
**/
|
|
|
|
_auth();
|
|
$ui->assign('_title', Lang::T('Order Voucher'));
|
|
$ui->assign('_system_menu', 'order');
|
|
|
|
$action = $routes['1'];
|
|
$user = User::_info();
|
|
$ui->assign('_user', $user);
|
|
|
|
if(file_exists(__DIR__."/../../pages/".str_replace(".","",$action).".html")){
|
|
$ui->assign("PageFile",$action);
|
|
$ui->assign("pageHeader",$action);
|
|
run_hook('customer_view_page'); #HOOK
|
|
$ui->display('customer/pages.tpl');
|
|
}else
|
|
$ui->display('customer/404.tpl'); |