- edit forms for editor and submitter: add new keywords with language

- Publish\IndexController.php: case sensitive relatedIdentifierTypes for later DOI creation
This commit is contained in:
Arno Kaimbacher 2021-06-15 14:39:37 +02:00
parent 27d95ddd70
commit 8e7960aa8e
3 changed files with 10 additions and 1 deletions

View file

@ -61,7 +61,8 @@ class IndexController extends Controller
->pluck('help_text', 'metadata_element');
$projects = Project::pluck('label', 'id');
$relatedIdentifierTypes = ["doi", "handle", "isbn", "issn", "url", "urn"];
// $relatedIdentifierTypes = ["doi", "handle", "isbn", "issn", "url", "urn"];
$relatedIdentifierTypes = ["DOI", "Handle", "ISBN", "ISSN", "URL", "URN"];
$relatedIdentifierTypes = array_combine($relatedIdentifierTypes, $relatedIdentifierTypes);
$relationTypes = ["IsSupplementTo", "IsSupplementedBy", "IsContinuedBy", "Continues",