csvxml/new.php

98 lines
2.9 KiB
PHP
Raw Normal View History

2019-08-27 00:32:24 +02:00
<?PHP
/**
* New start page for CSVXML.
*
* @link https://groupit.museum-digital.de/csvxml/
*
* @author Joshua Ramon Enslin <joshua@museum-digital.de>
*/
declare(strict_types = 1);
error_reporting(E_ALL);
ini_set('display_errors', "1");
require_once __DIR__ . "/functions/functions.php";
if (session_status() != PHP_SESSION_ACTIVE) {
session_start();
}
// This array contains all available languages
$allowed_langs = ['ar', 'de', 'en', 'hu', 'id', 'it', 'pl','pt'];
// Some languages are in translation. They will only be available for logged in users.
if (isset($_GET['navlang'])) {
$_SESSION['lang'] = $_GET['navlang'];
if (!in_array($_SESSION['lang'], $allowed_langs)) $_SESSION['lang'] = 'de';
}
else if (!isset($_SESSION['lang'])) {
$_SESSION['lang'] = lang_getfrombrowser($allowed_langs, 'en', "", false);
}
$lang = $_SESSION['lang'];
require __DIR__ . "/translation-importer/$lang/csvxml-overview.php";
2019-08-27 00:32:24 +02:00
$toInject = '
<link rel="stylesheet" type="text/css" href="assets/css/editMenu.css" />
<script src="assets/js/newToolTip.js" type="text/javascript" defer></script>
';
echo printHTMLHead($toInject);
echo '
<div class="uploader">
<form enctype="multipart/form-data" action="upload.php" method="POST">
<label for="fileToUpload">' . $csvxml_overview['select_csv_file_for_upload'] . '</label>
2019-08-27 00:32:24 +02:00
<input name="uploaded" type="file" id="fileToUpload" required />
<button type="submit">' . $csvxml_overview['upload'] . '</button>
2019-08-27 00:32:24 +02:00
</form>
</div>
<div>
<h2>' . $csvxml_overview['currently_approved_tags'] . '</h2>
2019-08-27 00:32:24 +02:00
<div class="options">
<a href="csv.php" class="buttonLike">' . $csvxml_overview['download_csv_all'] . '</a>
<a class="buttonLike invisible" id="csvBySelection">' . $csvxml_overview['download_csv_by_selection'] . '</a>
2019-08-27 00:32:24 +02:00
<br />
<a class="buttonLike" id="selectRequired">' . $csvxml_overview['select_required_fields'] . '</a>
<a class="buttonLike" id="selectAll">' . $csvxml_overview['select_all_fields'] . '</a>
<a class="buttonLike invisible" id="unsetSelection">' . $csvxml_overview['unset_selection'] . '</a>
2019-08-27 00:32:24 +02:00
</div>
';
require __DIR__ . "/values/availableFields.php";
$tooltips = [];
foreach ($availableFields as $headline => $fields) {
echo "<h3>{$headline}</h3>
<ul class='fieldList'>
";
foreach($fields as $fieldName => $field) {
echo "
<li data-alt='{$field['name_human_readable']}' data-value='{$fieldName}' data-for='{$fieldName}' class='newToolTipTag";
if ($field['required'] === true) echo " requiredField";
echo "'>{$fieldName}";
$toolTip = generateHelpTooltip($fieldName, $field['name_human_readable'], "{$field['remark']}</p><h5>General</h5><p>" . $field['explica']);
$tooltips[] = $toolTip[0];
echo "</li>";
}
echo '</ul>';
}
echo '
</div>
';
echo implode($tooltips);
echo '
</body>
</html>
';