21 lines
510 B
PHP
21 lines
510 B
PHP
|
<?php
|
||
|
|
||
|
return [
|
||
|
'publication_states' => [
|
||
|
"draft" => "draft",
|
||
|
"accepted" => "accepted",
|
||
|
'submitted' => 'submitted',
|
||
|
'published' => 'published',
|
||
|
'updated' => 'updated'
|
||
|
],
|
||
|
'server_states' => [
|
||
|
"audited" => "audited",
|
||
|
"published" => "published",
|
||
|
'restricted' => 'restricted',
|
||
|
'inprogress' => 'inprogress',
|
||
|
'unpublished' => 'unpublished',
|
||
|
'deleted' => 'deleted',
|
||
|
'temporary' => 'temporary'
|
||
|
]
|
||
|
];
|