tethys/config/enums.php
Arno Kaimbacher a463cb9e4c - add translated description
- creator required
- filesize vrom ini file
- correctly delete dataset in SubmitController
2020-06-10 21:09:21 +02:00

29 lines
764 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',
'created' => 'created',
],
'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",
]
];