tethys/config/enums.php
Arno Kaimbacher 54d6c5d434 - new subtitle in hero section with 26px
- bug im Backend augebessert
- db migration for documents via Config::get
2020-06-10 21:09:24 +02:00

30 lines
836 B
PHP

<?php
return [
'publication_states' => [
"draft" => "draft",
"accepted" => "accepted",
'submitted' => 'submitted',
'published' => 'published',
'updated' => 'updated',
],
'server_states' => [
"deleted" => "deleted",
"inprogress" => "inprogress",
"published" => "published",
"released" => "released",
"editor_accepted" => "editor_accepted",
"approved" => "approved",
"rejected_reviewer" => "rejected_reviewer",
"rejected_editor" => "rejected_editor",
"reviewed" => "reviewed",
],
'mimetypes_allowed' => [
"pdf" => "application/pdf",
"txt|asc|c|cc|h|srt" => "text/plain",
"htm|html" => "text/html",
"png" => "image/png",
"jpg|jpeg|jpe" => "image/jpeg",
]
];