PluginProbe
Forumax – AI Powered Advanced Community Forum Plugin / 2.4.4
Forumax – AI Powered Advanced Community Forum Plugin v2.4.4
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
bbp-core / includes / admin / menu / Delete_Forum.php

Delete_Forum.php in Forumax – AI Powered Advanced Community Forum Plugin 2.4.4, at includes/admin/menu/Delete_Forum.php

70 lines 1.5 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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 }
70