From 457b31c3db0e4d06bb97b98f0a9515eea12d8510 Mon Sep 17 00:00:00 2001 From: M_Viper Date: Thu, 6 Mar 2025 21:37:43 +0000 Subject: [PATCH] Dateien nach "js" hochladen --- js/classic-editor-shortcodes.js | 16 ++++++++++++++++ js/tinymce-shortcodes.js | 21 ++++++++++++++++++++ js/wp-stat-notice.js | 34 +++++++++++++++++++++++++++++++++ 3 files changed, 71 insertions(+) create mode 100644 js/classic-editor-shortcodes.js create mode 100644 js/tinymce-shortcodes.js create mode 100644 js/wp-stat-notice.js diff --git a/js/classic-editor-shortcodes.js b/js/classic-editor-shortcodes.js new file mode 100644 index 0000000..75acf87 --- /dev/null +++ b/js/classic-editor-shortcodes.js @@ -0,0 +1,16 @@ +document.addEventListener("DOMContentLoaded", function () { + const btn = document.getElementById("wp_multi_insert_shortcode"); + const dropdown = document.getElementById("wp_multi_shortcode_dropdown"); + + if (btn && dropdown) { + btn.addEventListener("click", function () { + const shortcode = dropdown.value; + + if (shortcode) { + window.send_to_editor("[" + shortcode + "]"); + } else { + alert("Bitte einen Shortcode auswählen."); + } + }); + } +}); diff --git a/js/tinymce-shortcodes.js b/js/tinymce-shortcodes.js new file mode 100644 index 0000000..3ee2395 --- /dev/null +++ b/js/tinymce-shortcodes.js @@ -0,0 +1,21 @@ +(function() { + tinymce.create('tinymce.plugins.wp_multi_shortcodes', { + init: function(editor, url) { + editor.addButton('wp_multi_shortcodes', { + type: 'menubutton', + text: 'Shortcodes', + icon: false, + menu: wpMultiShortcodes.map(function(shortcode) { + return { + text: shortcode.shortcode_name, + onclick: function() { + editor.insertContent('[' + shortcode.shortcode_name + ']'); + } + }; + }) + }); + } + }); + + tinymce.PluginManager.add('wp_multi_shortcodes', tinymce.plugins.wp_multi_shortcodes); +})(); diff --git a/js/wp-stat-notice.js b/js/wp-stat-notice.js new file mode 100644 index 0000000..d833c09 --- /dev/null +++ b/js/wp-stat-notice.js @@ -0,0 +1,34 @@ +jQuery(document).ready(function($) { + // Wenn der Benutzer den Button zum Melden des Beitrags klickt + $('body').on('click', '.report-post', function() { + var postId = $(this).data('post-id'); + $(this).next('.report-reason').toggle(); // Zeigt das Textfeld zum Gründen an + }); + + // Wenn der Benutzer das Formular absendet + $('body').on('click', '#submit-report', function() { + var postId = $(this).closest('.report-reason').prev('.report-post').data('post-id'); + var reason = $('#report-reason').val(); + + if (reason.trim() == '') { + alert('Bitte geben Sie einen Grund an.'); + return; + } + + // AJAX-Anfrage, um den Report zu senden + $.post(ajaxurl, { + action: 'report_post', + post_id: postId, + reason: reason + }, function(response) { + if (response.success) { + alert('Bericht erfolgreich gesendet!'); + // Verstecke das Formular nach dem Absenden + $('#report-reason').val(''); + $('#submit-report').closest('.report-reason').hide(); + } else { + alert('Fehler beim Senden des Berichts.'); + } + }); + }); +});