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
writable/HPILO/*
!writable/HPILO/index.html
writable/Excel/*
!writable/Excel/index.html
#mapurl 결과물
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/upload_images/*
writable/billing/*
#leftmenu 파일
Views/layouts/front/left_menu/*

View File

@ -23,12 +23,9 @@ class BillingController extends AdminController
final public function getFields(string $action = ""): array
{
switch ($action) {
case 'update':
return ["user_uid", 'order_uid', "email", "phone", "title", "upload_file", "status"];
break;
case "index":
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;
case "view":
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>