2017-03-19 07:02:14 +07:00
|
|
|
<?php
|
|
|
|
/**
|
2023-10-12 15:55:42 +07:00
|
|
|
* PHP Mikrotik Billing (https://github.com/hotspotbilling/phpnuxbill/)
|
|
|
|
* by https://t.me/ibnux
|
|
|
|
**/
|
|
|
|
|
2017-03-19 07:02:14 +07:00
|
|
|
_admin();
|
2022-10-13 14:00:54 +07:00
|
|
|
$ui->assign('_title', 'Pages');
|
2017-03-19 07:02:14 +07:00
|
|
|
$ui->assign('_system_menu', 'pages');
|
|
|
|
|
|
|
|
$action = $routes['1'];
|
|
|
|
$ui->assign('_admin', $admin);
|
|
|
|
|
2023-10-20 10:34:24 +07:00
|
|
|
if(strpos($action,"-reset")!==false){
|
2024-02-26 11:01:54 +07:00
|
|
|
if (!in_array($admin['user_type'], ['SuperAdmin', 'Admin'])) {
|
|
|
|
_alert(Lang::T('You do not have permission to access this page'),'danger', "dashboard");
|
|
|
|
}
|
2023-10-20 10:34:24 +07:00
|
|
|
$action = str_replace("-reset","",$action);
|
|
|
|
$path = "pages/".str_replace(".","",$action).".html";
|
|
|
|
$temp = "pages_template/".str_replace(".","",$action).".html";
|
|
|
|
if(file_exists($temp)){
|
|
|
|
if(!copy($temp, $path)){
|
|
|
|
file_put_contents($path, Http::getData('https://raw.githubusercontent.com/hotspotbilling/phpnuxbill/master/pages_template/'.$action.'.html'));
|
|
|
|
}
|
|
|
|
}else{
|
|
|
|
file_put_contents($path, Http::getData('https://raw.githubusercontent.com/hotspotbilling/phpnuxbill/master/pages_template/'.$action.'.html'));
|
|
|
|
}
|
|
|
|
r2(U . 'pages/'.$action);
|
|
|
|
}else if(strpos($action,"-post")===false){
|
2024-02-26 11:01:54 +07:00
|
|
|
if (!in_array($admin['user_type'], ['SuperAdmin', 'Admin'])) {
|
|
|
|
_alert(Lang::T('You do not have permission to access this page'),'danger', "dashboard");
|
|
|
|
}
|
2023-09-18 15:03:25 +07:00
|
|
|
$path = "pages/".str_replace(".","",$action).".html";
|
2024-08-17 23:07:42 +07:00
|
|
|
$ui->assign("action", $action);
|
2017-03-19 07:02:14 +07:00
|
|
|
//echo $path;
|
2022-09-18 00:00:40 +07:00
|
|
|
run_hook('view_edit_pages'); #HOOK
|
2023-09-18 15:03:25 +07:00
|
|
|
if(!file_exists($path)){
|
2023-09-20 14:27:15 +07:00
|
|
|
$temp = "pages_template/".str_replace(".","",$action).".html";
|
|
|
|
if(file_exists($temp)){
|
|
|
|
if(!copy($temp, $path)){
|
|
|
|
touch($path);
|
|
|
|
}
|
|
|
|
}else{
|
|
|
|
touch($path);
|
|
|
|
}
|
2023-09-18 15:03:25 +07:00
|
|
|
}
|
2017-03-19 07:02:14 +07:00
|
|
|
if(file_exists($path)){
|
2024-08-17 23:07:42 +07:00
|
|
|
if($action=='Voucher'){
|
|
|
|
if(!file_exists("pages/vouchers/")){
|
|
|
|
mkdir("pages/vouchers/");
|
|
|
|
if(file_exists("pages_template/vouchers/")){
|
|
|
|
File::copyFolder("pages_template/vouchers/", "pages/vouchers/");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$ui->assign("vouchers", scandir("pages/vouchers/"));
|
|
|
|
}
|
2017-03-19 07:02:14 +07:00
|
|
|
$html = file_get_contents($path);
|
|
|
|
$ui->assign("htmls",str_replace(["<div","</div>"],"",$html));
|
|
|
|
$ui->assign("writeable",is_writable($path));
|
2023-09-18 15:03:25 +07:00
|
|
|
$ui->assign("pageHeader",str_replace('_', ' ', $action));
|
2017-03-19 07:02:14 +07:00
|
|
|
$ui->assign("PageFile",$action);
|
|
|
|
$ui->display('page-edit.tpl');
|
|
|
|
}else
|
|
|
|
$ui->display('a404.tpl');
|
|
|
|
}else{
|
2024-02-26 11:01:54 +07:00
|
|
|
if (!in_array($admin['user_type'], ['SuperAdmin', 'Admin'])) {
|
|
|
|
_alert(Lang::T('You do not have permission to access this page'),'danger', "dashboard");
|
|
|
|
}
|
2017-03-19 07:02:14 +07:00
|
|
|
$action = str_replace("-post","",$action);
|
2023-09-18 15:03:25 +07:00
|
|
|
$path = "pages/".str_replace(".","",$action).".html";
|
2017-03-19 07:02:14 +07:00
|
|
|
if(file_exists($path)){
|
|
|
|
$html = _post("html");
|
2022-09-18 00:00:40 +07:00
|
|
|
run_hook('save_pages'); #HOOK
|
2024-08-17 23:07:42 +07:00
|
|
|
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);
|
|
|
|
}
|
|
|
|
}
|
2024-02-13 13:54:01 +07:00
|
|
|
r2(U . 'pages/'.$action, 's', Lang::T("Saving page success"));
|
2017-03-19 07:02:14 +07:00
|
|
|
}else{
|
2024-02-13 13:54:01 +07:00
|
|
|
r2(U . 'pages/'.$action, 'e', Lang::T("Failed to save page, make sure i can write to folder pages, <i>chmod 664 pages/*.html<i>"));
|
2017-03-19 07:02:14 +07:00
|
|
|
}
|
|
|
|
}else
|
|
|
|
$ui->display('a404.tpl');
|
|
|
|
}
|