blob: e2768aca9e098875aaf46b6c4ff77f25fcdd7544 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
<?php require_once "../../../../resources/private/relative.php"; getRelativeDetails("cms-special"); ?>
<?php $pageConfig = [ "domName" => "Nouvelle photo - Galerie de photos", "headerName" => "Nouvelle photo" ]; require_once $_SERVER['DOCUMENT_ROOT'] . "/cms-special/admin/\$resources/precontent.php"; ?>
<div id="hidding">
<p><?= $lang["admin-gallery"]["publish"]["category"] ?> <select id="category">
<option value="unclassed" selected><?= $lang["admin-gallery"]["publish"]["default"] ?></option>
<?php
$categories = scandir($_SERVER['DOCUMENT_ROOT'] . "/data/webcontent/galery/categories");
foreach ($categories as $category) {
if (trim($category) != "" && $category != "." && $category != "..") {
$catname = file_get_contents($_SERVER['DOCUMENT_ROOT'] . "/data/webcontent/galery/categories/" . $category);
echo("<option value=\"" . $category . "\">" . $catname . "</option>");
}
}
?>
</select></p>
<p><?= $lang["admin-gallery"]["publish"]["file"] ?> <input type="file" id="file"> <i><?= $lang["admin-gallery"]["publish"]["max"] ?> <?= ini_get("upload_max_filesize") ?></i></p>
<p><div style="text-align: center;"><a class="button" onclick="createCat()"><?= $lang["admin-gallery"]["publish"]["publish"] ?></a></div></p>
</div>
<?php require_once $_SERVER['DOCUMENT_ROOT'] . "/cms-special/admin/\$resources/postcontent.php"; ?>
<script>
function createCat() {
document.getElementById('hidding').classList.add('hide')
var formData = new FormData();
if (document.getElementById('file').value.trim() != "") {
formData.append("file", document.getElementById('file').files[0], document.getElementById('file').files[0].name);
}
formData.append("category", document.getElementById('category').value);
$.ajax({
type: "POST",
dataType: 'html',
url: "<?= $GLOBALS["SYSTEM_ROOT"] ?>/api/admin/galery_publish_photo.php",
success: function (data) {
if (data == "ok") {
location.href = "<?= $GLOBALS["SYSTEM_ROOT"] ?>/cms-special/admin/gallery";
} else {
alert("<?= $lang["admin-errors"]["errorprefix"] ?>" + data)
document.getElementById('hidding').classList.remove('hide')
}
},
error: function (error) {
alert("<?= $lang["admin-errors"]["connerror"] ?>")
document.getElementById('hidding').classList.remove('hide')
},
data: formData,
cache: false,
contentType: false,
processData: false
});
}
document.getElementById('file').value = "";
</script>
|