Apply .gitignore
This commit is contained in:
parent
f71def086c
commit
982d3175bf
18
.gitignore
vendored
18
.gitignore
vendored
@ -64,19 +64,21 @@ writable/debugbar/*
|
|||||||
|
|
||||||
php_errors.log
|
php_errors.log
|
||||||
|
|
||||||
writable/HPILO/*
|
|
||||||
!writable/HPILO/index.html
|
|
||||||
|
|
||||||
writable/Excel/*
|
|
||||||
!writable/Excel/index.html
|
|
||||||
|
|
||||||
#mapurl 결과물
|
#mapurl 결과물
|
||||||
public/mapurl/index.html
|
public/mapurl/index.html
|
||||||
|
|
||||||
#upload 파일
|
#추가 upload 파일
|
||||||
|
writable/HPILO/*
|
||||||
|
!writable/HPILO/index.html
|
||||||
|
|
||||||
|
writable/billing/*
|
||||||
|
!writable/billing/index.html
|
||||||
|
|
||||||
|
writable/excel/*
|
||||||
|
!writable/excel/index.html
|
||||||
|
|
||||||
public/uploads/*
|
public/uploads/*
|
||||||
public/upload_images/*
|
public/upload_images/*
|
||||||
writable/billing/*
|
|
||||||
|
|
||||||
#leftmenu 파일
|
#leftmenu 파일
|
||||||
Views/layouts/front/left_menu/*
|
Views/layouts/front/left_menu/*
|
||||||
|
|||||||
@ -23,12 +23,9 @@ class BillingController extends AdminController
|
|||||||
final public function getFields(string $action = ""): array
|
final public function getFields(string $action = ""): array
|
||||||
{
|
{
|
||||||
switch ($action) {
|
switch ($action) {
|
||||||
case 'update':
|
|
||||||
return ["user_uid", 'order_uid', "email", "phone", "title", "upload_file", "status"];
|
|
||||||
break;
|
|
||||||
case "index":
|
case "index":
|
||||||
case "excel":
|
case "excel":
|
||||||
return ["user_uid", "order_uid", "email", "phone", "title", "upload_file", "status", "updated_at", "created_at"];
|
return ["email", "phone", "title", "upload_file", "status", "updated_at", "created_at"];
|
||||||
break;
|
break;
|
||||||
case "view":
|
case "view":
|
||||||
return ["user_uid", 'order_uid', "email", "phone", "title", "upload_file", "status", "updated_at", "created_at", 'response'];
|
return ["user_uid", 'order_uid', "email", "phone", "title", "upload_file", "status", "updated_at", "created_at", 'response'];
|
||||||
|
|||||||
11
writable/billing/index.html
Normal file
11
writable/billing/index.html
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<title>403 Forbidden</title>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
|
||||||
|
<p>Directory access is forbidden.</p>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
11
writable/excel/index.html
Normal file
11
writable/excel/index.html
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<title>403 Forbidden</title>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
|
||||||
|
<p>Directory access is forbidden.</p>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
Loading…
Reference in New Issue
Block a user