diff --git a/wp-multi.php b/wp-multi.php index b8a7800..680e554 100644 --- a/wp-multi.php +++ b/wp-multi.php @@ -1,5140 +1,4960 @@ - true, - 'html_images' => true, - 'plaintext_urls' => true, - 'youtube_videos' => true, - 'googlevideo_videos' => true, - 'youtube_playlists' => true, - 'old_youtube_videos' => true, - 'smart_youtube' => true, - 'dailymotion_videos' => true, - 'vimeo_videos' => true, - ]); - - ?> -
0 fehlerhafte Links gefunden
-0 eindeutige Links wurden in 0 Links erkannt
-Link-Überprüfung: Alle Stunden
-Vorhandene Links werden regelmäßig erneut kontrolliert. Neue Links werden normalerweise sofort geprüft.
-- | - ID, 'disable_login', true), 1 ); ?> /> - Markiere diese Option, um den Login des Benutzers zu deaktivieren. - | -
---|
Diese Funktion fügt automatisch Tag zu Beiträgen hinzu, die noch keine haben.
- - - - - -Danke, dass du WP Multi verwendest! Dein Feedback hilft uns, das Plugin ständig zu verbessern. Wenn du Fehler entdeckst oder Verbesserungsvorschläge hast, besuche bitte unsere Gitea-Seite und teile uns deine Ideen mit!
-Statistik | -Wert | -
---|---|
Blockierte Kommentare | -- |
Aktivierte Honeypot-Felder | -- |
Spammer-IP-Adressen | -- |
Spam-Einreichungen | -- |
Keine Spammer-IP-Adressen gefunden.
- -ID | IP-Adresse | Versuche | Letzter Versuch | Aktionen |
---|---|---|---|---|
' . $ip->id . ' | '; - echo '' . $ip->ip . ' | '; - echo '' . $ip->attempts . ' | '; - echo '' . $ip->last_attempt . ' | '; - echo 'Entfernen | '; - echo '
Keine Nachrichten vorhanden.
'; - } - ?> - -Nachricht wurde erfolgreich erstellt.
'; - echo ""; // Seite neu laden - } -} - -// Menüeintrag im Adminbereich hinzufügen -function wp_multi_add_message_board_menu() { - add_menu_page( - 'Pinwand', // Seitentitel - 'Pinwand', // Menüeintrag - 'manage_options', // Berechtigung - 'message-board', // Slug - 'wp_multi_add_message_board', // Callback - 'dashicons-bell', // Icon - 6 // Position im Menü - ); -} -add_action('admin_menu', 'wp_multi_add_message_board_menu'); - -// Funktion zum Abrufen der vollständigen Nachricht -function wp_multi_get_message() { - if (isset($_POST['message_id'])) { - global $wpdb; - $table_name = $wpdb->prefix . 'message_board'; - $message_id = intval($_POST['message_id']); - $message = $wpdb->get_row("SELECT * FROM $table_name WHERE id = $message_id"); - - if ($message) { - // Datum im gewünschten Format (DD-MM-JJJJ HH:MM:SS) - $formatted_date = date('d-m-Y H:i:s', strtotime($message->created_at)); - - echo json_encode([ - 'created_at' => $formatted_date, - 'message' => nl2br(esc_textarea($message->message)), - 'user' => get_userdata($message->user_id)->user_login - ]); - } - } - wp_die(); -} - -add_action('wp_ajax_wp_multi_get_message', 'wp_multi_get_message'); - -// Funktion zum Löschen einer Nachricht -function wp_multi_delete_message() { - if (isset($_POST['message_id'])) { - global $wpdb; - $table_name = $wpdb->prefix . 'message_board'; - $message_id = intval($_POST['message_id']); - $wpdb->delete($table_name, array('id' => $message_id)); - - echo 'success'; - } - wp_die(); -} -add_action('wp_ajax_wp_multi_delete_message', 'wp_multi_delete_message'); - -// Funktion zum Deaktivieren der Pinwand bei der Deinstallation -function wp_multi_delete_message_board_table() { - global $wpdb; - $table_name = $wpdb->prefix . 'message_board'; - $wpdb->query("DROP TABLE IF EXISTS $table_name"); -} -register_deactivation_hook(__FILE__, 'wp_multi_delete_message_board_table'); - -// Funktion, um das Dashboard-Widget zu registrieren -function wp_multi_dashboard_widget() { - wp_add_dashboard_widget( - 'wp_multi_pinwand_widget', // Widget-ID - 'Pinwand Übersicht', // Widget-Titel - 'wp_multi_dashboard_widget_content' // Callback-Funktion - ); -} -add_action('wp_dashboard_setup', 'wp_multi_dashboard_widget'); - -// Callback-Funktion, die den Inhalt des Widgets erstellt -function wp_multi_dashboard_widget_content() { - global $wpdb; - $table_name = $wpdb->prefix . 'message_board'; - $messages = $wpdb->get_results("SELECT * FROM $table_name ORDER BY created_at DESC LIMIT 5"); // Zeige die neuesten 5 Nachrichten an - - if ($messages) { - echo 'Keine neuen Nachrichten.
'; - } -} - - -/* -* Benutzer-Analytics -*/ - -// Funktion zur Erstellung der Datenbanktabelle für Benutzer-Analytics -function wp_multi_create_analytics_table() { - global $wpdb; - $table_name = $wpdb->prefix . 'wp_multi_user_analytics'; - - // Überprüfen, ob die Tabelle bereits existiert - if ($wpdb->get_var("SHOW TABLES LIKE '$table_name'") != $table_name) { - // Tabelle erstellen - $charset_collate = $wpdb->get_charset_collate(); - $sql = "CREATE TABLE $table_name ( - id mediumint(9) NOT NULL AUTO_INCREMENT, - user_id bigint(20) NOT NULL, - action varchar(255) NOT NULL, - post_id bigint(20) DEFAULT NULL, - timestamp datetime DEFAULT CURRENT_TIMESTAMP, - PRIMARY KEY (id) - ) $charset_collate;"; - - require_once(ABSPATH . 'wp-admin/includes/upgrade.php'); - dbDelta($sql); - } -} -register_activation_hook(__FILE__, 'wp_multi_create_analytics_table'); - -// Funktion zur Verfolgung von Benutzerinteraktionen (Kommentare und Beitragsaufrufe) -function wp_multi_track_user_activity($user_id, $action, $post_id = null) { - global $wpdb; - $table_name = $wpdb->prefix . 'wp_multi_user_analytics'; - - // Wenn die Aktion ein 'view' ist, stelle sicher, dass wir die post_id korrekt setzen - if ($action == 'view' && is_single()) { - $post_id = get_the_ID(); - } - - // Benutzerinteraktionen in die Datenbank speichern - $wpdb->insert( - $table_name, - array( - 'user_id' => $user_id, - 'action' => $action, - 'post_id' => $post_id, - ) - ); -} - -// Kommentar-Verfolgung -function wp_multi_comment_activity($comment_id) { - $comment = get_comment($comment_id); - $user_id = $comment->user_id; - wp_multi_track_user_activity($user_id, 'comment', $comment->comment_post_ID); -} -add_action('comment_post', 'wp_multi_comment_activity'); - -// Beitragsaufruf-Verfolgung -function wp_multi_post_view_activity() { - if (is_single() && is_user_logged_in()) { - $user_id = get_current_user_id(); - $post_id = get_the_ID(); - wp_multi_track_user_activity($user_id, 'view', $post_id); - } -} -add_action('wp_head', 'wp_multi_post_view_activity'); - -// Funktion zur Anzeige der Benutzer-Analytics im Admin-Bereich -function wp_multi_display_user_analytics() { - global $wpdb; - $table_name = $wpdb->prefix . 'wp_multi_user_analytics'; - - // Abfrage, um die Benutzerinteraktionen zu holen - $results = wp_multi_get_analytics_data(); - - ?> -- | - | - | - | - |
---|---|---|---|---|
user_id); ?> | -action); ?> | -- post_id) { - $post_title = get_the_title($row->post_id); - echo esc_html($post_title ? $post_title : 'Kein Titel verfügbar'); - } else { - echo 'Kein Beitrag'; - } - ?> - | -post_id); ?> | -timestamp); ?> | -
- |
Benutzer wurde gesperrt!
Benutzername | -E-Mail-Adresse | -IP-Adresse | -Aktionen | -
---|---|---|---|
username); ?> | -email); ?> | -ip_address); ?> | -- Löschen - | -
Keine gesperrten Benutzer gefunden. | -
Keine Shortcodes vorhanden.
'; - } -} - - // JavaScript für Meta-Box einbinden -function wp_multi_enqueue_admin_scripts($hook) { - if ('post.php' === $hook || 'post-new.php' === $hook) { - wp_enqueue_script('wp-multi-shortcode', plugin_dir_url(__FILE__) . 'js/editor-shortcode.js', array('jquery'), null, true); - } -} -add_action('admin_enqueue_scripts', 'wp_multi_enqueue_admin_scripts'); - -// Funktion zum Registrieren des TinyMCE Plugins -function wp_multi_add_shortcode_button() { - add_filter('mce_external_plugins', 'wp_multi_register_tinymce_plugin'); - add_filter('mce_buttons', 'wp_multi_add_tinymce_button'); -} -add_action('admin_head', 'wp_multi_add_shortcode_button'); - -// Plugin für TinyMCE registrieren (angepasster Pfad zum JS-File) -function wp_multi_register_tinymce_plugin($plugins) { - $plugins['wp_multi_shortcodes'] = plugin_dir_url(__FILE__) . 'js/tinymce-shortcodes.js'; - return $plugins; -} - -// Button zur TinyMCE Toolbar hinzufügen -function wp_multi_add_tinymce_button($buttons) { - array_push($buttons, 'wp_multi_shortcodes'); - return $buttons; -} - -// Shortcodes aus der Datenbank für das JavaScript bereitstellen -function wp_multi_localize_shortcodes() { - global $wpdb; - $shortcodes = $wpdb->get_results("SELECT shortcode_name FROM {$wpdb->prefix}wp_multi_shortcodes", ARRAY_A); - - // Shortcodes als JSON an das JS-File übergeben - wp_enqueue_script('wp-multi-tinymce', plugin_dir_url(__FILE__) . 'js/tinymce-shortcodes.js', array('jquery'), null, true); - wp_localize_script('wp-multi-tinymce', 'wpMultiShortcodes', $shortcodes); -} -add_action('admin_enqueue_scripts', 'wp_multi_localize_shortcodes'); - - -/* -* Update Admin-Dashboard widget -*/ - - -// Widget zum Admin-Dashboard hinzufügen -function wp_multi_update_dashboard_widget() { - wp_add_dashboard_widget( - 'wp_multi_update_widget', // Widget-ID - 'Verfügbare Updates für WP Multi', // Widget-Titel - 'wp_multi_update_dashboard_widget_content' // Callback-Funktion - ); -} -add_action('wp_dashboard_setup', 'wp_multi_update_dashboard_widget'); - -// Callback-Funktion für das Widget -function wp_multi_update_dashboard_widget_content() { - // Gitea API-URL und Token - $api_url = 'https://git.viper.ipv64.net/api/v1/repos/M_Viper/wp-multi/releases'; - $api_token = 'aad0e1d1ea382921591a144f115c1d55febb50b3'; - - // Die Version des Plugins aus den Metadaten der Plugin-Datei holen - $plugin_data = get_plugin_data( __FILE__ ); - $installed_version = $plugin_data['Version']; // Die installierte Version aus den Plugin-Metadaten - - // Gitea API-Anfrage für die neuesten Releases - $response = wp_remote_get($api_url, array( - 'headers' => array( - 'Authorization' => 'token ' . $api_token - ) - )); - - if (is_wp_error($response)) { - echo 'Fehler beim Abrufen der Versionsinformationen von Gitea.'; - return; - } - - // API-Antwort verarbeiten - $body = wp_remote_retrieve_body($response); - $data = json_decode($body, true); - - if (!empty($data) && isset($data[0]['tag_name'])) { - $latest_version = $data[0]['tag_name']; // Neuste Version von Gitea - - // Vergleiche die installierte Version mit der neuesten Version - if (version_compare($installed_version, $latest_version, '>=')) { - // Wenn die installierte Version gleich oder neuer ist als die Version in Gitea - echo 'Ihre Version ist aktuell. Version ' . $installed_version . ' ist die neueste Version.
'; - } else { - // Wenn die installierte Version älter ist als die Version in Gitea - echo 'Es ist eine neue Version von WP Multi verfügbar! Version ' . $latest_version . ' ist jetzt verfügbar.
'; - echo 'Aktuell installierte Version: ' . $installed_version . '
'; - echo 'Neue Version auf Gitea: ' . $latest_version . '
'; - echo ''; - } - } else { - echo 'Fehler beim Abrufen der neuesten Version von Gitea.'; - } -} - - -/* -* Notify Seite Discord & Telegram -*/ - - -// Übergeordnetes Menü "Notify" erstellen -function wp_multi_menu() { - // Menüpunkt für "Notify" - add_menu_page( - 'Notify', - 'Notify', - 'manage_options', - 'wp-multi-notify', - 'wp_multi_notify_page', - 'dashicons-bell', - 100 - ); - - // Untermenüpunkt für DC-Notify - add_submenu_page( - 'wp-multi-notify', - 'DC-Notify Einstellungen', - 'DC-Notify', - 'manage_options', - 'wp-multi', - 'wp_multi_settings_page' - ); - - // Untermenüpunkt für TG-Notify - add_submenu_page( - 'wp-multi-notify', - 'TG-Notify Einstellungen', - 'TG-Notify', - 'manage_options', - 'tg-notify', - 'tg_notify_page' - ); -} -add_action('admin_menu', 'wp_multi_menu'); - -// Callback-Funktion für die Hauptseite Notify -function wp_multi_notify_page() { - ?> -Kanal ohne Thema: -1001234567890
'; - echo 'Kanal mit Thema: -1001234567890_123
'; -} -function tg_notify_custom_message_callback() { - $value = get_option('tg_notify_custom_message', ''); - echo ''; - echo 'Verfügbare Variablen: {title}, {author}, {link}
'; -} - -// Checkbox beim Beitrag hinzufügen -function tg_notify_add_meta_box() { - add_meta_box( - 'tg_notify_meta_box', - __('Telegram Benachrichtigung', 'wp-stat-notice'), - 'tg_notify_meta_box_callback', - 'post', - 'side', - 'high' - ); -} -add_action('add_meta_boxes', 'tg_notify_add_meta_box'); - -function tg_notify_meta_box_callback($post) { - $value = get_post_meta($post->ID, '_tg_notify_send', true); - - // Standardmäßig auf 1 setzen, wenn der Beitrag neu ist - if (empty($value) && get_post_status($post->ID) !== 'publish') { - $value = 1; - } - - wp_nonce_field('tg_notify_meta_box', 'tg_notify_meta_box_nonce'); - echo ''; -} - -function tg_notify_save_post($post_id) { - // Sicherheitsprüfungen - if (!isset($_POST['tg_notify_meta_box_nonce']) || !wp_verify_nonce($_POST['tg_notify_meta_box_nonce'], 'tg_notify_meta_box')) return; - if (defined('DOING_AUTOSAVE') && DOING_AUTOSAVE) return; - if (wp_is_post_revision($post_id) || wp_is_post_autosave($post_id)) return; - if (!current_user_can('edit_post', $post_id)) return; - - // Prüfen, ob der Beitrag wirklich veröffentlicht wurde - if (get_post_status($post_id) !== 'publish') return; - - // Prüfen, ob die Nachricht bereits gesendet wurde - $already_sent = get_post_meta($post_id, '_tg_notify_sent', true); - if ($already_sent) return; - - $send_notification = isset($_POST['tg_notify_send']) ? 1 : 0; - update_post_meta($post_id, '_tg_notify_send', $send_notification); - - if ($send_notification) { - tg_notify_send_telegram_message($post_id); - update_post_meta($post_id, '_tg_notify_sent', 1); - } -} - - -add_action('save_post', 'tg_notify_save_post'); - -function tg_notify_send_telegram_message($post_id) { - $bot_token = get_option('tg_notify_bot_token'); - $chat_ids = explode("\n", get_option('tg_notify_chat_ids')); - $message_template = get_option('tg_notify_custom_message'); - - $post = get_post($post_id); - // Überprüfen, ob der Beitrag von einem Gast-Author stammt - $author_name = get_the_author_meta('display_name', $post->post_author); - if (empty($author_name)) { - // Falls kein Name vorhanden ist (Gast-Author), den Gast-Namen verwenden oder einen Platzhalter setzen - $author_name = 'Gast-Author'; - } - - // Nachricht formatieren - $message = str_replace( - ['{title}', '{author}', '{link}'], - [$post->post_title, $author_name, get_permalink($post_id)], - $message_template - ); - - foreach ($chat_ids as $chat_id) { - $chat_id = trim($chat_id); - if (!empty($chat_id)) { - // Überprüfen, ob die ID das Thema enthält (Format: -1001234567890_123) - if (strpos($chat_id, '_') !== false) { - // Kanal-ID und Themen-ID trennen - list($channel_id, $topic_id) = explode('_', $chat_id); - $chat_id = $channel_id; - - // Telegram API-Anfrage senden - $url = "https://api.telegram.org/bot$bot_token/sendMessage"; - $args = [ - 'body' => json_encode([ - 'chat_id' => $chat_id, - 'text' => $message, - 'parse_mode' => 'HTML', - 'reply_to_message_id' => $topic_id - ]), - 'headers' => ['Content-Type' => 'application/json'], - 'method' => 'POST', - ]; - - // API-Request senden und Fehlerprotokollierung - $response = wp_remote_post($url, $args); - if (is_wp_error($response)) { - $error_message = $response->get_error_message(); - error_log("Telegram Fehler: $error_message"); - } else { - // Erhöhe den Telegram-Nachrichtenzähler - tg_notify_increment_telegram_message_count(); - error_log('Telegram Antwort: ' . print_r($response, true)); - } - } else { - // Normaler Kanal ohne Thema - $url = "https://api.telegram.org/bot$bot_token/sendMessage"; - $args = [ - 'body' => json_encode([ - 'chat_id' => $chat_id, - 'text' => $message, - 'parse_mode' => 'HTML' - ]), - 'headers' => ['Content-Type' => 'application/json'], - 'method' => 'POST', - ]; - - // API-Request senden und Fehlerprotokollierung - $response = wp_remote_post($url, $args); - if (is_wp_error($response)) { - $error_message = $response->get_error_message(); - error_log("Telegram Fehler: $error_message"); - } else { - // Erhöhe den Telegram-Nachrichtenzähler - tg_notify_increment_telegram_message_count(); - error_log('Telegram Antwort: ' . print_r($response, true)); - } - } - } - } -} - -function tg_notify_increment_telegram_message_count() { - $current_count = get_option('wp_multi_telegram_message_count', 0); - update_option('wp_multi_telegram_message_count', $current_count + 1); -} - - -/* -* Admin-Dashboard Nachrichten sende Zähler -*/ - - -// Admin Dashboard Widget für Telegram und Discord Nachrichten Zähler -function wp_multi_add_dashboard_widgets() { - wp_add_dashboard_widget( - 'wp_multi_dashboard_widget', - 'Telegram & Discord Nachrichten Zähler', - 'wp_multi_display_dashboard_widget' - ); -} -add_action('wp_dashboard_setup', 'wp_multi_add_dashboard_widgets'); - -// Callback-Funktion, die den Inhalt des Widgets anzeigt -function wp_multi_display_dashboard_widget() { - // Telegram-Nachrichtenzähler - $telegram_message_count = get_option('wp_multi_telegram_message_count', 0); - // Discord-Nachrichtenzähler - $discord_message_count = get_option('wp_multi_discord_message_count', 0); - - // Ausgabe der Zähler - echo 'Telegram Nachrichten gesendet: ' . esc_html($telegram_message_count) . '
'; - echo 'Discord Nachrichten gesendet: ' . esc_html($discord_message_count) . '
'; -} - - -/* -* Gast Autoren -*/ - - -// Gast-Autor Eingabefeld in der Sidebar im Admin-Bereich hinzufügen -function wp_multi_add_guest_author_field() { - add_meta_box( - 'guest_author_meta_box', - __('Gast-Autor', 'wp-multi'), - 'wp_multi_guest_author_field', - ['post', 'page', 'dein_custom_post_type'], - 'side', - 'high' - ); -} -add_action('add_meta_boxes', 'wp_multi_add_guest_author_field'); - -// Callback-Funktion, die das Eingabefeld anzeigt -function wp_multi_guest_author_field($post) { - // Die Metadaten des Beitrags laden (ob ein Gast-Autor gesetzt ist) - $guest_author = get_post_meta($post->ID, '_guest_author', true); - ?> - - - ID, '_guest_author', true); - if (!empty($guest_author)) { - // Ersetze den Standard-Autor mit dem Gast-Autor - $author_name = $guest_author; - } - } - } - return $author_name; -} -add_filter('the_author', 'wp_multi_display_guest_author'); - -// Anzeige des Gast-Autors in der Beitragsübersicht (Backend) -function wp_multi_add_guest_author_column($columns) { - if (isset($columns['author'])) { - $columns['guest_author'] = __('Gast-Autor', 'wp-multi'); - } - return $columns; -} -add_filter('manage_posts_columns', 'wp_multi_add_guest_author_column'); - -// Inhalt der Gast-Autor-Spalte -function wp_multi_display_guest_author_column($column_name, $post_id) { - if ($column_name == 'guest_author') { - $guest_author = get_post_meta($post_id, '_guest_author', true); - if (!empty($guest_author)) { - echo esc_html($guest_author); - } else { - echo __('Kein Gast-Autor', 'wp-multi'); - } - } -} -add_action('manage_posts_custom_column', 'wp_multi_display_guest_author_column', 10, 2); - -// Admin-Menü für die Gast-Autor-Übersicht unter Benutzer hinzufügen -function wp_multi_add_guest_author_page() { - add_submenu_page( - 'users.php', - __('Gast-Autor Übersicht', 'wp-multi'), - __('Gast-Autoren', 'wp-multi'), - 'manage_options', - 'guest_author_overview', - 'wp_multi_guest_author_overview_page' - ); -} -add_action('admin_menu', 'wp_multi_add_guest_author_page'); - - -// Callback-Funktion für die Gast-Autor-Übersicht -function wp_multi_guest_author_overview_page() { - ?> -- | - |
---|---|
guest_author); ?> | -- | ' . __('Keine Gast-Autoren gefunden.', 'wp-multi') . ' | '; - } - ?> - -
' . __('Autor:', 'wp-multi') . ' ' . esc_html($author_name); - - if ($selected_second_custom_text !== '' && isset($second_custom_texts_array[$selected_second_custom_text])) { - $output .= ' | ' . esc_html($second_custom_texts_array[$selected_second_custom_text]); // Trennzeichen " | " - } - - $output .= '
'; - - // Anzeige des ersten benutzerdefinierten Texts (unterer Bereich) - if ($selected_custom_text !== '' && isset($custom_texts_array[$selected_custom_text])) { - $output .= '' . esc_html($custom_texts_array[$selected_custom_text]) . '
'; - } - - $output .= '' . __('Dies ist eine benutzerdefinierte Seite im Admin-Bereich.', 'wp-stat-notice') . '
'; - } - break; - } - } - } -} - -// Funktion zum Hinzufügen neuer benutzerdefinierter Seiten über ein Admin-Formular -function wp_stat_notice_add_custom_page_form() { - // Alle Dashicons laden - $dashicons = [ - 'dashicons-admin-links', - 'dashicons-admin-site', - 'dashicons-admin-home', - 'dashicons-admin-plugins', - 'dashicons-admin-users', - 'dashicons-analytics', - 'dashicons-archive', - 'dashicons-book', - 'dashicons-calendar', - 'dashicons-camera', - 'dashicons-cart', - 'dashicons-cloud', - 'dashicons-clipboard', - 'dashicons-clock', - 'dashicons-cloud-upload', - 'dashicons-email', - 'dashicons-heart', - 'dashicons-laptop', - 'dashicons-lock', - 'dashicons-phone', - 'dashicons-rss', - 'dashicons-search', - 'dashicons-settings', - 'dashicons-share', - 'dashicons-tag', - 'dashicons-thumbs-up', - 'dashicons-welcome-learn-more', - 'dashicons-welcome-write-blog' - ]; - - ?> -' . __('Benutzerdefinierte Seite wurde hinzugefügt!', 'wp-stat-notice') . '
' . __('Titel', 'wp-stat-notice') . ' | ' . __('URL', 'wp-stat-notice') . ' | ' . __('Aktionen', 'wp-stat-notice') . ' |
---|---|---|
' . esc_html($page['title']) . ' | '; - echo '' . esc_html($page['url']) . ' | '; - echo ''; - echo '' . __('Bearbeiten', 'wp-stat-notice') . ' | '; - echo '' . __('Löschen', 'wp-stat-notice') . ''; - echo ' | '; - echo '
' . __('Seite erfolgreich bearbeitet!', 'wp-stat-notice') . '
' . __('Seite wurde gelöscht.', 'wp-stat-notice') . '
Es gibt keine gemeldeten Beiträge.
'; - return; - } - - // Tabelle mit den letzten 10 gemeldeten Beiträgen anzeigen - echo 'Beitrag | Datum | Grund |
---|---|---|
' . esc_html($post->post_title) . ' | '; - echo '' . esc_html($report->report_date) . ' | '; - echo '' . esc_html($report->reason) . ' | '; - echo '
Beitrag | -Datum | -Name | -Grund | -Status | -Aktionen | -
---|---|---|---|---|---|
post_title); ?> | -report_date); ?> | -name); ?> | -reason); ?> | -status); ?> | -- Report Löschen | - Unpublish | - Beitrag Löschen - | -
' . __('Keine Lesezeichen gefunden.', 'statistik-manager') . '
'; - } -} - -// Funktion zum Hinzufügen eines Lesezeichens via AJAX -function statistik_manager_add_bookmark_ajax() { - if ($_SERVER['REQUEST_METHOD'] == 'POST' && isset($_POST['bookmark_url']) && isset($_POST['bookmark_name'])) { - $bookmark_url = sanitize_text_field($_POST['bookmark_url']); - $bookmark_name = sanitize_text_field($_POST['bookmark_name']); // Name des Lesezeichens - - // Neues Lesezeichen erstellen - $post_id = wp_insert_post(array( - 'post_type' => 'bookmark', - 'post_title' => $bookmark_name, // Benutzerdefinierter Name für das Lesezeichen - 'post_status' => 'publish', - 'meta_input' => array( - '_bookmark_url' => $bookmark_url - ) - )); - - // Speichern des Gast-Token - if (isset($_COOKIE['guest_token'])) { - update_post_meta($post_id, '_guest_token', $_COOKIE['guest_token']); - } - - // Rückgabe des neuen Lesezeichens als HTML - $bookmark_html = 'Beiträge: ' . $statistics['posts_count'] . '
Kommentare: ' . $statistics['comments_count'] . '
Kategorien: ' . $statistics['categories_count'] . '
Serien: ' . $statistics['series_count'] . '
' . sprintf(__('%s wurde am %s eröffnet.', 'statistik-manager'), esc_html($webseitenname), esc_html($formatted_date)) . '
'; - $output .= 'Verwenden Sie den Statistik Manager, um eine benutzerdefinierte Statistik Box auf Ihrer Website anzuzeigen und wichtige Statistiken zu verfolgen. Hier ist eine kurze Anleitung:
-[statistik_manager]
.Die Statistik Box wird an der Stelle angezeigt, an der der Shortcode eingefügt wurde. Alle Statistiken und Inhalte können jederzeit über die Plugin-Einstellungen angepasst werden.
-Bei Fragen oder Problemen können Sie sich jederzeit an uns wenden!
- -Zusätzlich zur Anzeige von Statistiken können Sie auch eine benutzerdefinierte Liste von Lesezeichen für Ihre Gäste verwalten. Hier sind die wichtigen Schritte:
-[display_bookmarks]
.[add_bookmark]
verwenden, der ein Formular zum Speichern eines Lesezeichens anzeigt.Wenn Sie Fragen oder Probleme haben, wenden Sie sich an uns!
-+ | + ID, 'disable_login', true), 1 ); ?> /> + Markiere diese Option, um den Login des Benutzers zu deaktivieren. + | +
---|
Diese Funktion fügt automatisch Tag zu Beiträgen hinzu, die noch keine haben.
+ + + + + +Danke, dass du WP Multi verwendest! Dein Feedback hilft uns, das Plugin ständig zu verbessern. Wenn du Fehler entdeckst oder Verbesserungsvorschläge hast, besuche bitte unsere Gitea-Seite und teile uns deine Ideen mit!
+Statistik | +Wert | +
---|---|
Blockierte Kommentare | ++ |
Aktivierte Honeypot-Felder | ++ |
Spammer-IP-Adressen | ++ |
Spam-Einreichungen | ++ |
Keine Spammer-IP-Adressen gefunden.
+ +ID | IP-Adresse | Versuche | Letzter Versuch | Aktionen |
---|---|---|---|---|
' . $ip->id . ' | '; + echo '' . $ip->ip . ' | '; + echo '' . $ip->attempts . ' | '; + echo '' . $ip->last_attempt . ' | '; + echo 'Entfernen | '; + echo '
Keine Nachrichten vorhanden.
'; + } + ?> + +Nachricht wurde erfolgreich erstellt.
'; + echo ""; // Seite neu laden + } +} + +// Menüeintrag im Adminbereich hinzufügen +function wp_multi_add_message_board_menu() { + add_menu_page( + 'Pinwand', // Seitentitel + 'Pinwand', // Menüeintrag + 'manage_options', // Berechtigung + 'message-board', // Slug + 'wp_multi_add_message_board', // Callback + 'dashicons-bell', // Icon + 6 // Position im Menü + ); +} +add_action('admin_menu', 'wp_multi_add_message_board_menu'); + +// Funktion zum Abrufen der vollständigen Nachricht +function wp_multi_get_message() { + if (isset($_POST['message_id'])) { + global $wpdb; + $table_name = $wpdb->prefix . 'message_board'; + $message_id = intval($_POST['message_id']); + $message = $wpdb->get_row("SELECT * FROM $table_name WHERE id = $message_id"); + + if ($message) { + // Datum im gewünschten Format (DD-MM-JJJJ HH:MM:SS) + $formatted_date = date('d-m-Y H:i:s', strtotime($message->created_at)); + + echo json_encode([ + 'created_at' => $formatted_date, + 'message' => nl2br(esc_textarea($message->message)), + 'user' => get_userdata($message->user_id)->user_login + ]); + } + } + wp_die(); +} + +add_action('wp_ajax_wp_multi_get_message', 'wp_multi_get_message'); + +// Funktion zum Löschen einer Nachricht +function wp_multi_delete_message() { + if (isset($_POST['message_id'])) { + global $wpdb; + $table_name = $wpdb->prefix . 'message_board'; + $message_id = intval($_POST['message_id']); + $wpdb->delete($table_name, array('id' => $message_id)); + + echo 'success'; + } + wp_die(); +} +add_action('wp_ajax_wp_multi_delete_message', 'wp_multi_delete_message'); + +// Funktion zum Deaktivieren der Pinwand bei der Deinstallation +function wp_multi_delete_message_board_table() { + global $wpdb; + $table_name = $wpdb->prefix . 'message_board'; + $wpdb->query("DROP TABLE IF EXISTS $table_name"); +} +register_deactivation_hook(__FILE__, 'wp_multi_delete_message_board_table'); + +// Funktion, um das Dashboard-Widget zu registrieren +function wp_multi_dashboard_widget() { + wp_add_dashboard_widget( + 'wp_multi_pinwand_widget', // Widget-ID + 'Pinwand Übersicht', // Widget-Titel + 'wp_multi_dashboard_widget_content' // Callback-Funktion + ); +} +add_action('wp_dashboard_setup', 'wp_multi_dashboard_widget'); + +// Callback-Funktion, die den Inhalt des Widgets erstellt +function wp_multi_dashboard_widget_content() { + global $wpdb; + $table_name = $wpdb->prefix . 'message_board'; + $messages = $wpdb->get_results("SELECT * FROM $table_name ORDER BY created_at DESC LIMIT 5"); // Zeige die neuesten 5 Nachrichten an + + if ($messages) { + echo 'Keine neuen Nachrichten.
'; + } +} + + +/* +* Benutzer-Analytics +*/ + +// Funktion zur Erstellung der Datenbanktabelle für Benutzer-Analytics +function wp_multi_create_analytics_table() { + global $wpdb; + $table_name = $wpdb->prefix . 'wp_multi_user_analytics'; + + // Überprüfen, ob die Tabelle bereits existiert + if ($wpdb->get_var("SHOW TABLES LIKE '$table_name'") != $table_name) { + // Tabelle erstellen + $charset_collate = $wpdb->get_charset_collate(); + $sql = "CREATE TABLE $table_name ( + id mediumint(9) NOT NULL AUTO_INCREMENT, + user_id bigint(20) NOT NULL, + action varchar(255) NOT NULL, + post_id bigint(20) DEFAULT NULL, + timestamp datetime DEFAULT CURRENT_TIMESTAMP, + PRIMARY KEY (id) + ) $charset_collate;"; + + require_once(ABSPATH . 'wp-admin/includes/upgrade.php'); + dbDelta($sql); + } +} +register_activation_hook(__FILE__, 'wp_multi_create_analytics_table'); + +// Funktion zur Verfolgung von Benutzerinteraktionen (Kommentare und Beitragsaufrufe) +function wp_multi_track_user_activity($user_id, $action, $post_id = null) { + global $wpdb; + $table_name = $wpdb->prefix . 'wp_multi_user_analytics'; + + // Wenn die Aktion ein 'view' ist, stelle sicher, dass wir die post_id korrekt setzen + if ($action == 'view' && is_single()) { + $post_id = get_the_ID(); + } + + // Benutzerinteraktionen in die Datenbank speichern + $wpdb->insert( + $table_name, + array( + 'user_id' => $user_id, + 'action' => $action, + 'post_id' => $post_id, + ) + ); +} + +// Kommentar-Verfolgung +function wp_multi_comment_activity($comment_id) { + $comment = get_comment($comment_id); + $user_id = $comment->user_id; + wp_multi_track_user_activity($user_id, 'comment', $comment->comment_post_ID); +} +add_action('comment_post', 'wp_multi_comment_activity'); + +// Beitragsaufruf-Verfolgung +function wp_multi_post_view_activity() { + if (is_single() && is_user_logged_in()) { + $user_id = get_current_user_id(); + $post_id = get_the_ID(); + wp_multi_track_user_activity($user_id, 'view', $post_id); + } +} +add_action('wp_head', 'wp_multi_post_view_activity'); + +// Funktion zur Anzeige der Benutzer-Analytics im Admin-Bereich +function wp_multi_display_user_analytics() { + global $wpdb; + $table_name = $wpdb->prefix . 'wp_multi_user_analytics'; + + // Abfrage, um die Benutzerinteraktionen zu holen + $results = wp_multi_get_analytics_data(); + + ?> ++ | + | + | + | + |
---|---|---|---|---|
user_id); ?> | +action); ?> | ++ post_id) { + $post_title = get_the_title($row->post_id); + echo esc_html($post_title ? $post_title : 'Kein Titel verfügbar'); + } else { + echo 'Kein Beitrag'; + } + ?> + | +post_id); ?> | +timestamp); ?> | +
+ |
Benutzer wurde gesperrt!
Benutzername | +E-Mail-Adresse | +IP-Adresse | +Aktionen | +
---|---|---|---|
username); ?> | +email); ?> | +ip_address); ?> | ++ Löschen + | +
Keine gesperrten Benutzer gefunden. | +
Keine Shortcodes vorhanden.
'; + } +} + + // JavaScript für Meta-Box einbinden +function wp_multi_enqueue_admin_scripts($hook) { + if ('post.php' === $hook || 'post-new.php' === $hook) { + wp_enqueue_script('wp-multi-shortcode', plugin_dir_url(__FILE__) . 'js/editor-shortcode.js', array('jquery'), null, true); + } +} +add_action('admin_enqueue_scripts', 'wp_multi_enqueue_admin_scripts'); + +// Funktion zum Registrieren des TinyMCE Plugins +function wp_multi_add_shortcode_button() { + add_filter('mce_external_plugins', 'wp_multi_register_tinymce_plugin'); + add_filter('mce_buttons', 'wp_multi_add_tinymce_button'); +} +add_action('admin_head', 'wp_multi_add_shortcode_button'); + +// Plugin für TinyMCE registrieren (angepasster Pfad zum JS-File) +function wp_multi_register_tinymce_plugin($plugins) { + $plugins['wp_multi_shortcodes'] = plugin_dir_url(__FILE__) . 'js/tinymce-shortcodes.js'; + return $plugins; +} + +// Button zur TinyMCE Toolbar hinzufügen +function wp_multi_add_tinymce_button($buttons) { + array_push($buttons, 'wp_multi_shortcodes'); + return $buttons; +} + +// Shortcodes aus der Datenbank für das JavaScript bereitstellen +function wp_multi_localize_shortcodes() { + global $wpdb; + $shortcodes = $wpdb->get_results("SELECT shortcode_name FROM {$wpdb->prefix}wp_multi_shortcodes", ARRAY_A); + + // Shortcodes als JSON an das JS-File übergeben + wp_enqueue_script('wp-multi-tinymce', plugin_dir_url(__FILE__) . 'js/tinymce-shortcodes.js', array('jquery'), null, true); + wp_localize_script('wp-multi-tinymce', 'wpMultiShortcodes', $shortcodes); +} +add_action('admin_enqueue_scripts', 'wp_multi_localize_shortcodes'); + + +/* +* Update Admin-Dashboard widget +*/ + + +// Widget zum Admin-Dashboard hinzufügen +function wp_multi_update_dashboard_widget() { + wp_add_dashboard_widget( + 'wp_multi_update_widget', // Widget-ID + 'Verfügbare Updates für WP Multi', // Widget-Titel + 'wp_multi_update_dashboard_widget_content' // Callback-Funktion + ); +} +add_action('wp_dashboard_setup', 'wp_multi_update_dashboard_widget'); + +// Callback-Funktion für das Widget +function wp_multi_update_dashboard_widget_content() { + // Gitea API-URL und Token + $api_url = 'https://git.viper.ipv64.net/api/v1/repos/M_Viper/wp-multi/releases'; + $api_token = '9a8bfc571ec98af17bdfadf9e8495c6c330d8c7d'; + + // Die Version des Plugins aus den Metadaten der Plugin-Datei holen + $plugin_data = get_plugin_data( __FILE__ ); + $installed_version = $plugin_data['Version']; // Die installierte Version aus den Plugin-Metadaten + + // Gitea API-Anfrage für die neuesten Releases + $response = wp_remote_get($api_url, array( + 'headers' => array( + 'Authorization' => 'token ' . $api_token + ) + )); + + if (is_wp_error($response)) { + echo 'Fehler beim Abrufen der Versionsinformationen von Gitea.'; + return; + } + + // API-Antwort verarbeiten + $body = wp_remote_retrieve_body($response); + $data = json_decode($body, true); + + if (!empty($data) && isset($data[0]['tag_name'])) { + $latest_version = $data[0]['tag_name']; // Neuste Version von Gitea + + // Vergleiche die installierte Version mit der neuesten Version + if (version_compare($installed_version, $latest_version, '>=')) { + // Wenn die installierte Version gleich oder neuer ist als die Version in Gitea + echo 'Ihre Version ist aktuell. Version ' . $installed_version . ' ist die neueste Version.
'; + } else { + // Wenn die installierte Version älter ist als die Version in Gitea + echo 'Es ist eine neue Version von WP Multi verfügbar! Version ' . $latest_version . ' ist jetzt verfügbar.
'; + echo 'Aktuell installierte Version: ' . $installed_version . '
'; + echo 'Neue Version auf Gitea: ' . $latest_version . '
'; + echo ''; + } + } else { + echo 'Fehler beim Abrufen der neuesten Version von Gitea.'; + } +} + + +/* +* Notify Seite Discord & Telegram +*/ + + +// Übergeordnetes Menü "Notify" erstellen +function wp_multi_menu() { + // Menüpunkt für "Notify" + add_menu_page( + 'Notify', + 'Notify', + 'manage_options', + 'wp-multi-notify', + 'wp_multi_notify_page', + 'dashicons-bell', + 100 + ); + + // Untermenüpunkt für DC-Notify + add_submenu_page( + 'wp-multi-notify', + 'DC-Notify Einstellungen', + 'DC-Notify', + 'manage_options', + 'wp-multi', + 'wp_multi_settings_page' + ); + + // Untermenüpunkt für TG-Notify + add_submenu_page( + 'wp-multi-notify', + 'TG-Notify Einstellungen', + 'TG-Notify', + 'manage_options', + 'tg-notify', + 'tg_notify_page' + ); +} +add_action('admin_menu', 'wp_multi_menu'); + +// Callback-Funktion für die Hauptseite Notify +function wp_multi_notify_page() { + ?> +Kanal ohne Thema: -1001234567890
'; + echo 'Kanal mit Thema: -1001234567890_123
'; +} +function tg_notify_custom_message_callback() { + $value = get_option('tg_notify_custom_message', ''); + echo ''; + echo 'Verfügbare Variablen: {title}, {author}, {link}
'; +} + +// Checkbox beim Beitrag hinzufügen +function tg_notify_add_meta_box() { + add_meta_box( + 'tg_notify_meta_box', + __('Telegram Benachrichtigung', 'wp-stat-notice'), + 'tg_notify_meta_box_callback', + 'post', + 'side', + 'high' + ); +} +add_action('add_meta_boxes', 'tg_notify_add_meta_box'); + +function tg_notify_meta_box_callback($post) { + $value = get_post_meta($post->ID, '_tg_notify_send', true); + + // Standardmäßig auf 1 setzen, wenn der Beitrag neu ist + if (empty($value) && get_post_status($post->ID) !== 'publish') { + $value = 1; + } + + wp_nonce_field('tg_notify_meta_box', 'tg_notify_meta_box_nonce'); + echo ''; +} + +function tg_notify_save_post($post_id) { + // Sicherheitsprüfungen + if (!isset($_POST['tg_notify_meta_box_nonce']) || !wp_verify_nonce($_POST['tg_notify_meta_box_nonce'], 'tg_notify_meta_box')) return; + if (defined('DOING_AUTOSAVE') && DOING_AUTOSAVE) return; + if (wp_is_post_revision($post_id) || wp_is_post_autosave($post_id)) return; + if (!current_user_can('edit_post', $post_id)) return; + + // Prüfen, ob der Beitrag wirklich veröffentlicht wurde + if (get_post_status($post_id) !== 'publish') return; + + // Prüfen, ob die Nachricht bereits gesendet wurde + $already_sent = get_post_meta($post_id, '_tg_notify_sent', true); + if ($already_sent) return; + + $send_notification = isset($_POST['tg_notify_send']) ? 1 : 0; + update_post_meta($post_id, '_tg_notify_send', $send_notification); + + if ($send_notification) { + tg_notify_send_telegram_message($post_id); + update_post_meta($post_id, '_tg_notify_sent', 1); + } +} + + +add_action('save_post', 'tg_notify_save_post'); + +function tg_notify_send_telegram_message($post_id) { + $bot_token = get_option('tg_notify_bot_token'); + $chat_ids = explode("\n", get_option('tg_notify_chat_ids')); + $message_template = get_option('tg_notify_custom_message'); + + $post = get_post($post_id); + // Überprüfen, ob der Beitrag von einem Gast-Author stammt + $author_name = get_the_author_meta('display_name', $post->post_author); + if (empty($author_name)) { + // Falls kein Name vorhanden ist (Gast-Author), den Gast-Namen verwenden oder einen Platzhalter setzen + $author_name = 'Gast-Author'; + } + + // Nachricht formatieren + $message = str_replace( + ['{title}', '{author}', '{link}'], + [$post->post_title, $author_name, get_permalink($post_id)], + $message_template + ); + + foreach ($chat_ids as $chat_id) { + $chat_id = trim($chat_id); + if (!empty($chat_id)) { + // Überprüfen, ob die ID das Thema enthält (Format: -1001234567890_123) + if (strpos($chat_id, '_') !== false) { + // Kanal-ID und Themen-ID trennen + list($channel_id, $topic_id) = explode('_', $chat_id); + $chat_id = $channel_id; + + // Telegram API-Anfrage senden + $url = "https://api.telegram.org/bot$bot_token/sendMessage"; + $args = [ + 'body' => json_encode([ + 'chat_id' => $chat_id, + 'text' => $message, + 'parse_mode' => 'HTML', + 'reply_to_message_id' => $topic_id + ]), + 'headers' => ['Content-Type' => 'application/json'], + 'method' => 'POST', + ]; + + // API-Request senden und Fehlerprotokollierung + $response = wp_remote_post($url, $args); + if (is_wp_error($response)) { + $error_message = $response->get_error_message(); + error_log("Telegram Fehler: $error_message"); + } else { + // Erhöhe den Telegram-Nachrichtenzähler + tg_notify_increment_telegram_message_count(); + error_log('Telegram Antwort: ' . print_r($response, true)); + } + } else { + // Normaler Kanal ohne Thema + $url = "https://api.telegram.org/bot$bot_token/sendMessage"; + $args = [ + 'body' => json_encode([ + 'chat_id' => $chat_id, + 'text' => $message, + 'parse_mode' => 'HTML' + ]), + 'headers' => ['Content-Type' => 'application/json'], + 'method' => 'POST', + ]; + + // API-Request senden und Fehlerprotokollierung + $response = wp_remote_post($url, $args); + if (is_wp_error($response)) { + $error_message = $response->get_error_message(); + error_log("Telegram Fehler: $error_message"); + } else { + // Erhöhe den Telegram-Nachrichtenzähler + tg_notify_increment_telegram_message_count(); + error_log('Telegram Antwort: ' . print_r($response, true)); + } + } + } + } +} + +function tg_notify_increment_telegram_message_count() { + $current_count = get_option('wp_multi_telegram_message_count', 0); + update_option('wp_multi_telegram_message_count', $current_count + 1); +} + + +/* +* Admin-Dashboard Nachrichten sende Zähler +*/ + + +// Admin Dashboard Widget für Telegram und Discord Nachrichten Zähler +function wp_multi_add_dashboard_widgets() { + wp_add_dashboard_widget( + 'wp_multi_dashboard_widget', + 'Telegram & Discord Nachrichten Zähler', + 'wp_multi_display_dashboard_widget' + ); +} +add_action('wp_dashboard_setup', 'wp_multi_add_dashboard_widgets'); + +// Callback-Funktion, die den Inhalt des Widgets anzeigt +function wp_multi_display_dashboard_widget() { + // Telegram-Nachrichtenzähler + $telegram_message_count = get_option('wp_multi_telegram_message_count', 0); + // Discord-Nachrichtenzähler + $discord_message_count = get_option('wp_multi_discord_message_count', 0); + + // Ausgabe der Zähler + echo 'Telegram Nachrichten gesendet: ' . esc_html($telegram_message_count) . '
'; + echo 'Discord Nachrichten gesendet: ' . esc_html($discord_message_count) . '
'; +} + + +/* +* Gast Autoren +*/ + + +// Gast-Autor Eingabefeld in der Sidebar im Admin-Bereich hinzufügen +function wp_multi_add_guest_author_field() { + add_meta_box( + 'guest_author_meta_box', + __('Gast-Autor', 'wp-multi'), + 'wp_multi_guest_author_field', + ['post', 'page', 'dein_custom_post_type'], + 'side', + 'high' + ); +} +add_action('add_meta_boxes', 'wp_multi_add_guest_author_field'); + +// Callback-Funktion, die das Eingabefeld anzeigt +function wp_multi_guest_author_field($post) { + // Die Metadaten des Beitrags laden (ob ein Gast-Autor gesetzt ist) + $guest_author = get_post_meta($post->ID, '_guest_author', true); + ?> + + + ID, '_guest_author', true); + if (!empty($guest_author)) { + // Ersetze den Standard-Autor mit dem Gast-Autor + $author_name = $guest_author; + } + } + } + return $author_name; +} +add_filter('the_author', 'wp_multi_display_guest_author'); + +// Anzeige des Gast-Autors in der Beitragsübersicht (Backend) +function wp_multi_add_guest_author_column($columns) { + if (isset($columns['author'])) { + $columns['guest_author'] = __('Gast-Autor', 'wp-multi'); + } + return $columns; +} +add_filter('manage_posts_columns', 'wp_multi_add_guest_author_column'); + +// Inhalt der Gast-Autor-Spalte +function wp_multi_display_guest_author_column($column_name, $post_id) { + if ($column_name == 'guest_author') { + $guest_author = get_post_meta($post_id, '_guest_author', true); + if (!empty($guest_author)) { + echo esc_html($guest_author); + } else { + echo __('Kein Gast-Autor', 'wp-multi'); + } + } +} +add_action('manage_posts_custom_column', 'wp_multi_display_guest_author_column', 10, 2); + +// Admin-Menü für die Gast-Autor-Übersicht unter Benutzer hinzufügen +function wp_multi_add_guest_author_page() { + add_submenu_page( + 'users.php', + __('Gast-Autor Übersicht', 'wp-multi'), + __('Gast-Autoren', 'wp-multi'), + 'manage_options', + 'guest_author_overview', + 'wp_multi_guest_author_overview_page' + ); +} +add_action('admin_menu', 'wp_multi_add_guest_author_page'); + + +// Callback-Funktion für die Gast-Autor-Übersicht +function wp_multi_guest_author_overview_page() { + ?> ++ | + |
---|---|
guest_author); ?> | ++ | ' . __('Keine Gast-Autoren gefunden.', 'wp-multi') . ' | '; + } + ?> + +
' . __('Autor:', 'wp-multi') . ' ' . esc_html($author_name); + + if ($selected_second_custom_text !== '' && isset($second_custom_texts_array[$selected_second_custom_text])) { + $output .= ' | ' . esc_html($second_custom_texts_array[$selected_second_custom_text]); // Trennzeichen " | " + } + + $output .= '
'; + + // Anzeige des ersten benutzerdefinierten Texts (unterer Bereich) + if ($selected_custom_text !== '' && isset($custom_texts_array[$selected_custom_text])) { + $output .= '' . esc_html($custom_texts_array[$selected_custom_text]) . '
'; + } + + $output .= '' . __('Dies ist eine benutzerdefinierte Seite im Admin-Bereich.', 'wp-stat-notice') . '
'; + } + break; + } + } + } +} + +// Funktion zum Hinzufügen neuer benutzerdefinierter Seiten über ein Admin-Formular +function wp_stat_notice_add_custom_page_form() { + // Alle Dashicons laden + $dashicons = [ + 'dashicons-admin-links', + 'dashicons-admin-site', + 'dashicons-admin-home', + 'dashicons-admin-plugins', + 'dashicons-admin-users', + 'dashicons-analytics', + 'dashicons-archive', + 'dashicons-book', + 'dashicons-calendar', + 'dashicons-camera', + 'dashicons-cart', + 'dashicons-cloud', + 'dashicons-clipboard', + 'dashicons-clock', + 'dashicons-cloud-upload', + 'dashicons-email', + 'dashicons-heart', + 'dashicons-laptop', + 'dashicons-lock', + 'dashicons-phone', + 'dashicons-rss', + 'dashicons-search', + 'dashicons-settings', + 'dashicons-share', + 'dashicons-tag', + 'dashicons-thumbs-up', + 'dashicons-welcome-learn-more', + 'dashicons-welcome-write-blog' + ]; + + ?> +' . __('Benutzerdefinierte Seite wurde hinzugefügt!', 'wp-stat-notice') . '
' . __('Titel', 'wp-stat-notice') . ' | ' . __('URL', 'wp-stat-notice') . ' | ' . __('Aktionen', 'wp-stat-notice') . ' |
---|---|---|
' . esc_html($page['title']) . ' | '; + echo '' . esc_html($page['url']) . ' | '; + echo ''; + echo '' . __('Bearbeiten', 'wp-stat-notice') . ' | '; + echo '' . __('Löschen', 'wp-stat-notice') . ''; + echo ' | '; + echo '
' . __('Seite erfolgreich bearbeitet!', 'wp-stat-notice') . '
' . __('Seite wurde gelöscht.', 'wp-stat-notice') . '
Es gibt keine gemeldeten Beiträge.
'; + return; + } + + // Tabelle mit den letzten 10 gemeldeten Beiträgen anzeigen + echo 'Beitrag | Datum | Grund |
---|---|---|
' . esc_html($post->post_title) . ' | '; + echo '' . esc_html($report->report_date) . ' | '; + echo '' . esc_html($report->reason) . ' | '; + echo '
Beitrag | +Datum | +Name | +Grund | +Status | +Aktionen | +
---|---|---|---|---|---|
post_title); ?> | +report_date); ?> | +name); ?> | +reason); ?> | +status); ?> | ++ Report Löschen | + Unpublish | + Beitrag Löschen + | +
' . __('Keine Lesezeichen gefunden.', 'statistik-manager') . '
'; + } +} + +// Funktion zum Hinzufügen eines Lesezeichens via AJAX +function statistik_manager_add_bookmark_ajax() { + if ($_SERVER['REQUEST_METHOD'] == 'POST' && isset($_POST['bookmark_url']) && isset($_POST['bookmark_name'])) { + $bookmark_url = sanitize_text_field($_POST['bookmark_url']); + $bookmark_name = sanitize_text_field($_POST['bookmark_name']); // Name des Lesezeichens + + // Neues Lesezeichen erstellen + $post_id = wp_insert_post(array( + 'post_type' => 'bookmark', + 'post_title' => $bookmark_name, // Benutzerdefinierter Name für das Lesezeichen + 'post_status' => 'publish', + 'meta_input' => array( + '_bookmark_url' => $bookmark_url + ) + )); + + // Speichern des Gast-Token + if (isset($_COOKIE['guest_token'])) { + update_post_meta($post_id, '_guest_token', $_COOKIE['guest_token']); + } + + // Rückgabe des neuen Lesezeichens als HTML + $bookmark_html = 'Beiträge: ' . $statistics['posts_count'] . '
Kommentare: ' . $statistics['comments_count'] . '
Kategorien: ' . $statistics['categories_count'] . '
Serien: ' . $statistics['series_count'] . '
' . sprintf(__('%s wurde am %s eröffnet.', 'statistik-manager'), esc_html($webseitenname), esc_html($formatted_date)) . '
'; + $output .= 'Verwenden Sie den Statistik Manager, um eine benutzerdefinierte Statistik Box auf Ihrer Website anzuzeigen und wichtige Statistiken zu verfolgen. Hier ist eine kurze Anleitung:
+[statistik_manager]
.Die Statistik Box wird an der Stelle angezeigt, an der der Shortcode eingefügt wurde. Alle Statistiken und Inhalte können jederzeit über die Plugin-Einstellungen angepasst werden.
+Bei Fragen oder Problemen können Sie sich jederzeit an uns wenden!
+ +Zusätzlich zur Anzeige von Statistiken können Sie auch eine benutzerdefinierte Liste von Lesezeichen für Ihre Gäste verwalten. Hier sind die wichtigen Schritte:
+[display_bookmarks]
.[add_bookmark]
verwenden, der ein Formular zum Speichern eines Lesezeichens anzeigt.Wenn Sie Fragen oder Probleme haben, wenden Sie sich an uns!
+