PluginProbe
Forumax – AI Powered Advanced Community Forum Plugin / 2.2.0
Forumax – AI Powered Advanced Community Forum Plugin v2.2.0
2.4.4 2.4.3 2.4.2 2.4.1 2.4.0 trunk 1.0.8 1.1.0 1.2.1 1.2.2 1.2.3 1.2.4 1.2.5 1.2.6 1.2.7 1.2.8 1.2.9 1.3.0 1.3.1 1.3.2 1.3.3 1.4.0 1.4.1 2.0.0 2.1.0 All 29 releases
← All changes | includes/admin/menu/Delete_Forum.php +69 -53 1.3.32.2.0 View file →
@@ -1,53 +1,69 @@
1 -<?php
2 -// AJAX handler to delete a forum
3 -add_action( 'wp_ajax_bbp_delete_forum', 'bbp_delete_forums' );
4 -function bbp_delete_forums() {
5 -
6 - // Check the nonce
7 - check_ajax_referer( 'bbpc-admin-nonce', 'bbpc_nonce' );
8 -
9 - if ( ! current_user_can( 'manage_options' ) ) {
10 - wp_send_json_error( 'Unauthorized request.' );
11 - }
12 -
13 - $forum_id = ! empty ( $_POST['forum_id'] ) ? absint( $_POST['forum_id'] ) : 0;
14 - if ( empty( $forum_id ) ) {
15 - wp_send_json_error( 'Forum ID cannot be empty.' );
16 - }
17 -
18 - $children = get_children( [
19 - 'post_parent' => $forum_id,
20 - 'post_type' => 'topic',
21 - 'orderby' => 'menu_order',
22 - 'order' => 'asc',
23 - ] );
24 -
25 - $topics = '';
26 - $topic_replies = '';
27 -
28 - if ( is_array( $children ) ) :
29 - foreach ( $children as $child ) :
30 - $replies = get_children( [
31 - 'post_parent' => $child->ID,
32 - 'post_type' => 'reply',
33 - 'post_status' => [ 'publish', 'draft' ],
34 - ] );
35 -
36 - $topics .= $child->ID . ',';
37 - if ( is_array( $replies ) ) :
38 - foreach ( $replies as $reply ) :
39 - $topic_replies .= $reply->ID . ',';
40 - endforeach;
41 - endif;
42 - endforeach;
43 - endif;
44 -
45 - $forum_posts = $forum_id . ',' . $topic_replies . $topics;
46 - $forum_posts = explode( ',', $forum_posts );
47 - $forum_posts_int = array_map( 'intval', $forum_posts );
48 - foreach ( $forum_posts_int as $deletes ) {
49 - wp_trash_post( $deletes, true );
50 - }
51 - wp_send_json_success( 'Forum Deleted successfully.' );
52 - wp_die();
53 -}
1 +<?php
2 +/**
3 + * Delete Forum functionality
4 + *
5 + * @package Forumax
6 + */
7 +
8 +defined( 'ABSPATH' ) || exit;
9 +
10 +// AJAX handler to delete a forum
11 +add_action( 'wp_ajax_forumax_delete_forum', 'forumax_delete_forums' );
12 +
13 +/**
14 + * Delete a forum and its topics/replies.
15 + */
16 +function forumax_delete_forums() {
17 +
18 + // Check the nonce
19 + check_ajax_referer( 'bbpc-admin-nonce', 'bbpc_nonce' );
20 +
21 + if ( ! current_user_can( 'manage_options' ) ) {
22 + wp_send_json_error( 'Unauthorized request.' );
23 + }
24 +
25 + $forum_id = ! empty( $_POST['forum_id'] ) ? absint( $_POST['forum_id'] ) : 0;
26 + if ( empty( $forum_id ) ) {
27 + wp_send_json_error( 'Forum ID cannot be empty.' );
28 + }
29 +
30 + $children = get_children( [
31 + 'post_parent' => $forum_id,
32 + 'post_type' => 'topic',
33 + 'orderby' => 'menu_order',
34 + 'order' => 'asc',
35 + ] );
36 +
37 + $topics = '';
38 + $topic_replies = '';
39 +
40 + if ( is_array( $children ) ) {
41 + foreach ( $children as $child ) {
42 + $replies = get_children( [
43 + 'post_parent' => $child->ID,
44 + 'post_type' => 'reply',
45 + 'post_status' => [ 'publish', 'draft' ],
46 + ] );
47 +
48 + $topics .= $child->ID . ',';
49 + if ( is_array( $replies ) ) {
50 + foreach ( $replies as $reply ) {
51 + $topic_replies .= $reply->ID . ',';
52 + }
53 + }
54 + }
55 + }
56 +
57 + $forum_posts = $forum_id . ',' . $topic_replies . $topics;
58 + $forum_posts = explode( ',', $forum_posts );
59 + $forum_posts_int = array_map( 'intval', $forum_posts );
60 +
61 + foreach ( $forum_posts_int as $deletes ) {
62 + if ( ! empty( $deletes ) ) {
63 + wp_trash_post( $deletes );
64 + }
65 + }
66 +
67 + wp_send_json_success( 'Forum Deleted successfully.' );
68 + wp_die();
69 +}