35 lines
753 B
PHP
35 lines
753 B
PHP
<?php
|
|
return [
|
|
'title' => "고객서비스정보",
|
|
'label' => [
|
|
'clientinfo_uid' => "고객명",
|
|
'code' => "Rack코드",
|
|
'type' => "종류",
|
|
'title' => "제목",
|
|
'billing_at' => "청구일",
|
|
'start_at' => "개통일",
|
|
'end_at' => "해지일",
|
|
'status' => "상태",
|
|
'updated_at' => "수정일",
|
|
'created_at' => "신청일",
|
|
'SERVER' => "서버",
|
|
'CPU' => "CPU",
|
|
'RAM' => "RAM",
|
|
'DISK' => "DISK",
|
|
'IP' => "IP",
|
|
],
|
|
'DEFAULTS' => [
|
|
'type' => "hosting",
|
|
'status' => "use"
|
|
],
|
|
"TYPE" => [
|
|
"hosting" => "서버호스팅",
|
|
"colocation" => "코로케이션",
|
|
],
|
|
"STATUS" => [
|
|
"use" => "사용중",
|
|
"pause" => "일시정지",
|
|
"terminated" => "해지",
|
|
],
|
|
];
|