Add field tag_related_identifier1, tag_related_identifier_type1

Close #49
This commit is contained in:
2025-09-23 14:19:22 +02:00
parent 6eb8ef4960
commit 822f7dc4ce
8 changed files with 17 additions and 8 deletions

View File

@@ -4,7 +4,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1" /> <meta name="viewport" content="width=device-width, initial-scale=1" />
<meta http-equiv="content-type" content="text/html; charset=UTF-8"/> <meta http-equiv="content-type" content="text/html; charset=UTF-8"/>
<link rel="stylesheet" type="text/css" href="assets/css/csvxml.min.css?68b707f146b86" /> <link rel="stylesheet" type="text/css" href="assets/css/csvxml.min.css?68d285523f820" />
<link rel="manifest" href="/manifest.json" /> <link rel="manifest" href="/manifest.json" />
<meta name="theme-color" content="#aa4400" /> <meta name="theme-color" content="#aa4400" />
@@ -27,7 +27,7 @@
</head> </head>
<body class="loading"> <body class="loading">
<script src="assets/js/csvxmlV2.min.js?68b707f146b88" type="text/javascript" async></script> <script src="assets/js/csvxmlV2.min.js?68d285523f822" type="text/javascript" async></script>
</body> </body>
</html> </html>

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@@ -1102,6 +1102,15 @@ final class CsvxmlAvailableFields {
dependsOn: ["tag" . $i], dependsOn: ["tag" . $i],
name_human_readable: $tlLoader->tl("overview", "overview", 'tags') . " (GND)", name_human_readable: $tlLoader->tl("overview", "overview", 'tags') . " (GND)",
); );
$availableFields[$tlLoader->tl("overview", "overview", 'tags')]["tag_related_identifier_type" . $i] = new FieldEntry(
dependsOn: ["tag" . $i, "tag_related_identifier" . $i],
name_human_readable: $tlLoader->tl("overview", "overview", 'tags') . " (related identifier type)",
allowedValues: MDNodaRepositoriesSet::REPOSITORIES_TAG,
);
$availableFields[$tlLoader->tl("overview", "overview", 'tags')]["tag_related_identifier" . $i] = new FieldEntry(
dependsOn: ["tag" . $i, "tag_related_identifier_type" . $i],
name_human_readable: $tlLoader->tl("overview", "overview", 'tags') . " (related identifier)",
);
} }