tethys/config/enums.php

30 lines
836 B
PHP
Raw Normal View History

2018-08-06 12:30:51 +00:00
<?php
return [
'publication_states' => [
"draft" => "draft",
"accepted" => "accepted",
'submitted' => 'submitted',
'published' => 'published',
2018-08-29 15:18:15 +00:00
'updated' => 'updated',
2018-08-06 12:30:51 +00:00
],
2018-08-29 15:18:15 +00:00
'server_states' => [
"deleted" => "deleted",
"inprogress" => "inprogress",
2018-08-06 12:30:51 +00:00
"published" => "published",
"released" => "released",
"editor_accepted" => "editor_accepted",
"approved" => "approved",
"rejected_reviewer" => "rejected_reviewer",
"rejected_editor" => "rejected_editor",
"reviewed" => "reviewed",
2018-08-29 15:18:15 +00:00
],
2019-02-22 17:07:00 +00:00
'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",
]
2018-08-06 12:30:51 +00:00
];