mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/unity.git
synced 2026-08-19 04:13:58 +00:00
104 lines
2.1 KiB
PHP
104 lines
2.1 KiB
PHP
<?php
|
|
return [
|
|
//site
|
|
'app_key' => env('APP_KEY'),
|
|
'site' => [
|
|
'title' => 'Unity',
|
|
'short_title' => 'Unity',
|
|
'description' => 'Unity',
|
|
],
|
|
'version' => 1,
|
|
'entity' => [
|
|
'signature' => [
|
|
'master_key' => 1,
|
|
'normal_key' => 2,
|
|
],
|
|
'status' => [
|
|
'active' => 1,
|
|
'delete' => 2,
|
|
'pending' => 9
|
|
]
|
|
],
|
|
'contact_template' => [
|
|
'status' => [
|
|
'active' => 1,
|
|
'delete' => 2,
|
|
'pending' => 9
|
|
]
|
|
],
|
|
'contract_template_obligation' => [
|
|
'status' => [
|
|
'active' => 1,
|
|
'delete' => 2,
|
|
'pending' => 9
|
|
]
|
|
],
|
|
'contract_template_obligation_dependency' => [
|
|
'status' => [
|
|
'active' => 1,
|
|
'delete' => 2,
|
|
'pending' => 9
|
|
]
|
|
],
|
|
'contract_template_obligation_contract_template_dependency' => [
|
|
'status' => [
|
|
'active' => 1,
|
|
'delete' => 2,
|
|
'pending' => 9
|
|
]
|
|
],
|
|
'contract' => [
|
|
'status' => [
|
|
'active' => 1,
|
|
'delete' => 2,
|
|
'done' => 3,
|
|
'pending' => 9
|
|
]
|
|
],
|
|
'contact_entity' => [
|
|
'status' => [
|
|
'active' => 1,
|
|
'delete' => 2,
|
|
'pending' => 9
|
|
]
|
|
],
|
|
'contract_obligation' => [
|
|
'must_complete' => [
|
|
'complete' => 1,
|
|
'no_need_complete' => 2,
|
|
],
|
|
'must_accept' => [
|
|
'accept' => 1,
|
|
'no_need_accept' => 2,
|
|
],
|
|
'status' => [
|
|
'active' => 1,
|
|
'delete' => 2,
|
|
'done' => 3,
|
|
'pending' => 9
|
|
],
|
|
'complete_status' => [
|
|
'pending' => 9,
|
|
'delete' => 2,
|
|
'completed' => 1,
|
|
],
|
|
'accept_status' => [
|
|
'pending' => 9,
|
|
'accepted' => 1,
|
|
],
|
|
'type' => [
|
|
'money' => 1,
|
|
'offer_service' => 2,
|
|
'received_service' => 3,
|
|
'request_service' => 4,
|
|
'accept_service' => 5,
|
|
]
|
|
],
|
|
'contract_obligation_contract_dependency' => [
|
|
'status' => [
|
|
'active' => 1,
|
|
'delete' => 2,
|
|
'pending' => 9
|
|
]
|
|
],
|
|
]; |