Apply .gitignore

This commit is contained in:
최준흠 2023-08-16 19:21:48 +09:00
parent f71def086c
commit 982d3175bf
4 changed files with 33 additions and 12 deletions

18
.gitignore vendored
View File

@ -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/*

View File

@ -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'];

View 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
View File

@ -0,0 +1,11 @@
<!DOCTYPE html>
<html>
<head>
<title>403 Forbidden</title>
</head>
<body>
<p>Directory access is forbidden.</p>
</body>
</html>