aboutsummaryrefslogtreecommitdiff
path: root/Neutron-trunk/cms-special/admin-v2/gallery/addcategory
diff options
context:
space:
mode:
Diffstat (limited to 'Neutron-trunk/cms-special/admin-v2/gallery/addcategory')
-rw-r--r--Neutron-trunk/cms-special/admin-v2/gallery/addcategory/index.php39
1 files changed, 0 insertions, 39 deletions
diff --git a/Neutron-trunk/cms-special/admin-v2/gallery/addcategory/index.php b/Neutron-trunk/cms-special/admin-v2/gallery/addcategory/index.php
deleted file mode 100644
index e29a1aa..0000000
--- a/Neutron-trunk/cms-special/admin-v2/gallery/addcategory/index.php
+++ /dev/null
@@ -1,39 +0,0 @@
-<?php require_once "../../../../resources/private/relative.php"; getRelativeDetails("cms-special"); ?>
-<?php $pageConfig = [ "domName" => "Nouvelle catégorie - Galerie de photos", "headerName" => "Nouvelle catégorie" ]; require_once $_SERVER['DOCUMENT_ROOT'] . "/cms-special/admin-v2/\$resources/precontent.php"; ?>
- <div id="hidding">
- <input type="text" id="catname" placeholder="<?= $lang["admin-gallery"]["addcat"]["placeholder"] ?>">
- <p><i><?= $lang["admin-gallery"]["addcat"]["same"] ?></i></p>
- <p><div style="text-align: center;"><a class="button" onclick="createCat()"><?= $lang["admin-gallery"]["addcat"]["confirm"] ?></a></div></p>
- </div>
-<?php require_once $_SERVER['DOCUMENT_ROOT'] . "/cms-special/admin-v2/\$resources/postcontent.php"; ?>
-
-<script>
-
-function createCat() {
- document.getElementById('hidding').classList.add('hide')
- var formData = new FormData();
- formData.append("category", document.getElementById('catname').value);
- $.ajax({
- type: "POST",
- dataType: 'html',
- url: "<?= $GLOBALS["SYSTEM_ROOT"] ?>/api/admin/galery_create_category.php",
- success: function (data) {
- if (data == "ok") {
- location.href = "<?= $GLOBALS["SYSTEM_ROOT"] ?>/cms-special/admin-v2/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
- });
-}
-
-</script> \ No newline at end of file