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