tethys/config/enums.php

21 lines
510 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',
'updated' => 'updated'
],
'server_states' => [
"audited" => "audited",
"published" => "published",
'restricted' => 'restricted',
'inprogress' => 'inprogress',
'unpublished' => 'unpublished',
'deleted' => 'deleted',
'temporary' => 'temporary'
]
];