add payment info
This commit is contained in:
parent
1e0036465f
commit
66f0390288
@ -1,4 +1,5 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* PHP Mikrotik Billing (https://github.com/hotspotbilling/phpnuxbill/)
|
||||
* by https://t.me/ibnux
|
||||
@ -16,7 +17,7 @@ if(strpos($action,"-reset")!==false){
|
||||
_alert(Lang::T('You do not have permission to access this page'), 'danger', "dashboard");
|
||||
}
|
||||
$action = str_replace("-reset", "", $action);
|
||||
$path = "pages/".str_replace(".","",$action).".html";
|
||||
$path = $PAGES_PATH . "/" . str_replace(".", "", $action) . ".html";
|
||||
$temp = "pages_template/" . str_replace(".", "", $action) . ".html";
|
||||
if (file_exists($temp)) {
|
||||
if (!copy($temp, $path)) {
|
||||
@ -30,7 +31,7 @@ if(strpos($action,"-reset")!==false){
|
||||
if (!in_array($admin['user_type'], ['SuperAdmin', 'Admin'])) {
|
||||
_alert(Lang::T('You do not have permission to access this page'), 'danger', "dashboard");
|
||||
}
|
||||
$path = "pages/".str_replace(".","",$action).".html";
|
||||
$path = $PAGES_PATH . "/" . str_replace(".", "", $action) . ".html";
|
||||
$ui->assign("action", $action);
|
||||
//echo $path;
|
||||
run_hook('view_edit_pages'); #HOOK
|
||||
@ -46,13 +47,13 @@ if(strpos($action,"-reset")!==false){
|
||||
}
|
||||
if (file_exists($path)) {
|
||||
if ($action == 'Voucher') {
|
||||
if(!file_exists("pages/vouchers/")){
|
||||
mkdir("pages/vouchers/");
|
||||
if (!file_exists($PAGES_PATH . "/vouchers/")) {
|
||||
mkdir($PAGES_PATH . "/vouchers/");
|
||||
if (file_exists("pages_template/vouchers/")) {
|
||||
File::copyFolder("pages_template/vouchers/", "pages/vouchers/");
|
||||
File::copyFolder("pages_template/vouchers/", $PAGES_PATH . "/vouchers/");
|
||||
}
|
||||
}
|
||||
$ui->assign("vouchers", scandir("pages/vouchers/"));
|
||||
$ui->assign("vouchers", scandir($PAGES_PATH . "/vouchers/"));
|
||||
}
|
||||
$html = file_get_contents($path);
|
||||
$ui->assign("htmls", str_replace(["<div", "</div>"], "", $html));
|
||||
@ -67,14 +68,14 @@ if(strpos($action,"-reset")!==false){
|
||||
_alert(Lang::T('You do not have permission to access this page'), 'danger', "dashboard");
|
||||
}
|
||||
$action = str_replace("-post", "", $action);
|
||||
$path = "pages/".str_replace(".","",$action).".html";
|
||||
$path = $PAGES_PATH . "/" . str_replace(".", "", $action) . ".html";
|
||||
if (file_exists($path)) {
|
||||
$html = _post("html");
|
||||
run_hook('save_pages'); #HOOK
|
||||
if (file_put_contents($path, $html)) {
|
||||
if (_post('template_save') == 'yes') {
|
||||
if (!empty(_post('template_name'))) {
|
||||
file_put_contents("pages/vouchers/"._post('template_name').'.html', $html);
|
||||
file_put_contents($PAGES_PATH . "/vouchers/" . _post('template_name') . '.html', $html);
|
||||
}
|
||||
}
|
||||
r2(U . 'pages/' . $action, 's', Lang::T("Saving page success"));
|
||||
|
@ -31,7 +31,7 @@
|
||||
<br>
|
||||
<p class="help-block">{Lang::T("Sometimes you need to refresh 3 times until content change")}</p>
|
||||
<input type="text" class="form-control" onclick="this.select()" readonly
|
||||
value="{$app_url}/pages/{$PageFile}.html">
|
||||
value="{$app_url}/{$PAGES_PATH}/{$PageFile}.html">
|
||||
</div>
|
||||
{else}
|
||||
<div class="panel-footer">
|
||||
@ -54,10 +54,10 @@
|
||||
{if $action=='Voucher'}
|
||||
<div class="col-md-4">
|
||||
{foreach $vouchers as $v}
|
||||
{if is_file("pages/vouchers/$v")}
|
||||
{if is_file("$PAGES_PATH/vouchers/$v")}
|
||||
<div class="panel mb20 panel-primary panel-hovered" style="cursor: pointer;" onclick="selectTemplate(this)">
|
||||
<div class="panel-heading">{str_replace(".html", '', $v)}</div>
|
||||
<div class="panel-body">{include file="pages/vouchers/$v"}</div>
|
||||
<div class="panel-body">{include file="$PAGES_PATH/vouchers/$v"}</div>
|
||||
</div>
|
||||
{/if}
|
||||
{/foreach}
|
||||
|
@ -473,6 +473,8 @@
|
||||
</li>
|
||||
<li {if $_routes[1] eq 'Registration_Info' }class="active" {/if}><a
|
||||
href="{$_url}pages/Registration_Info">{Lang::T('Registration Info')}</a></li>
|
||||
<li {if $_routes[1] eq 'Payment_Info' }class="active" {/if}><a
|
||||
href="{$_url}pages/Payment_Info">{Lang::T('Payment Info')}</a></li>
|
||||
<li {if $_routes[1] eq 'Privacy_Policy' }class="active" {/if}><a
|
||||
href="{$_url}pages/Privacy_Policy">{Lang::T('Privacy Policy')}</a></li>
|
||||
<li {if $_routes[1] eq 'Terms_and_Conditions' }class="active" {/if}><a
|
||||
|
@ -8,7 +8,7 @@
|
||||
<h3 class="box-title">{Lang::T('Order Voucher')}</h3>
|
||||
</div>
|
||||
<div class="box-body">
|
||||
{include file="$_path/../pages/Order_Voucher.html"}
|
||||
{include file="$PAGES_PATH/Order_Voucher.html"}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -6,7 +6,7 @@
|
||||
<div class="panel mb20 panel-primary panel-hovered">
|
||||
<div class="panel-heading">{$_L[$pageHeader]}</div>
|
||||
<div class="panel-body">
|
||||
{include file="$_path/../pages/$PageFile.html"}
|
||||
{include file="$PAGES_PATH/$PageFile.html"}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -1,8 +1,16 @@
|
||||
{include file="sections/user-header.tpl"}
|
||||
|
||||
<div class="row">
|
||||
<div class="col-md-6 col-md-offset-3">
|
||||
<div class="panel panel-info panel-hovered">
|
||||
{if file_exists("$PAGES_PATH/Payment_Info.html")}
|
||||
<div class="col-md-6">
|
||||
<div class="panel panel-warning panel-hovered">
|
||||
<div class="panel-heading">{Lang::T('Payment Info')}</div>
|
||||
<div class="panel-body">{include file="$PAGES_PATH/Payment_Info.html"}</div>
|
||||
</div>
|
||||
</div>
|
||||
{/if}
|
||||
<div class="{if file_exists("$PAGES_PATH/Payment_Info.html")}col-md-6{else}col-md-6 col-md-offset-3{/if}">
|
||||
<div class="panel panel-success panel-hovered">
|
||||
<div class="panel-heading">{Lang::T('Available Payment Gateway')}</div>
|
||||
<div class="panel-footer">
|
||||
<form method="post" action="{$_url}order/buy/{$route2}/{$route3}">
|
||||
|
Loading…
x
Reference in New Issue
Block a user