tethys/config/enums.php

30 lines
792 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' => [
2018-08-06 12:30:51 +00:00
"audited" => "audited",
"published" => "published",
'restricted' => 'restricted',
'inprogress' => 'inprogress',
'unpublished' => 'unpublished',
2018-08-29 15:18:15 +00:00
'deleted' => 'deleted',
'temporary' => 'temporary',
2019-01-24 15:56:39 +00:00
'created' => 'created',
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-29 15:18:15 +00:00
],
2019-04-02 16:03:29 +00:00
'max_filesize' => 5120
2018-08-06 12:30:51 +00:00
];