# automatorwp/6.0.2/integrations/wpforo/includes/ajax-functions.php

AutomatorWP – No-Code Workflow Automation, Integration &amp; Webhooks Plugin, now with AI, version 6.0.2. 145 lines.

- Page: https://pluginprobe.com/plugins/automatorwp/6.0.2/code/integrations/wpforo/includes/ajax-functions.php
- Raw: https://pluginprobe.com/plugins/automatorwp/6.0.2/raw/integrations/wpforo/includes/ajax-functions.php
- Modified: 2026-09-14T10:29:36+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/automatorwp/6.0.2/code/integrations/wpforo/includes/ajax-functions.php#L10-L20`.

```php
<?php
/**
 * Ajax Functions
 *
 * @package     AutomatorWP\wpForo\Ajax_Functions
 * @since       1.0.0
 */
// Exit if accessed directly
if( !defined( 'ABSPATH' ) ) exit;

/**
 * Ajax function for selecting forums
 *
 * @since 1.0.0
 */
function automatorwp_wpforo_ajax_get_forums() {
    // Security check, forces to die if not security passed
    check_ajax_referer( 'automatorwp_admin', 'nonce' );

    // Permissions check
    if( ! current_user_can( automatorwp_get_manager_capability() ) ) {
        wp_send_json_error( __( 'You\'re not allowed to perform this action.', 'automatorwp' ) );
    }

    global $wpdb;
    $results = array();

    // Pull back the search string
    $search = isset( $_REQUEST['q'] ) ? $wpdb->esc_like( $_REQUEST['q'] ) : '';

    $table = WPF()->tables->forums;
    $boards = WPF()->tables->boards;

    // Get the boards
    $results_boards = $wpdb->get_results( 
        "SELECT boardid FROM {$boards}"
    );

    // Get the forums
    $results = $wpdb->get_results( $wpdb->prepare(
        "SELECT f.forumid AS id, f.title AS text
        FROM {$table} AS f
        WHERE f.title LIKE %s",
        "%%{$search}%%"
    ) );

    if ( count( $results_boards ) > 1 ) {
        foreach ( $results_boards as $board ) {
            if ( $board->boardid !== '0' ){
                $table = $wpdb->prefix . 'wpforo_' . $board->boardid . '_forums';
                // Get the forums
                $results_forums = $wpdb->get_results( $wpdb->prepare(
                    "SELECT f.forumid AS id, f.title AS text
                    FROM {$table} AS f
                    WHERE f.title LIKE %s",
                    "%%{$search}%%"
                ) );
                
                foreach ($results_forums as $forum ) {
                    
                    $results[] = array(
                        'id' => $board->boardid . '-' . $forum->id,
                        'text' => $forum->text,
                    );
                }
            }
        }
    } 
   
    // Prepend option none
    $results = automatorwp_ajax_parse_extra_options( $results );

    // Return our results
    wp_send_json_success( $results );
    die;

}
add_action( 'wp_ajax_automatorwp_wpforo_get_forums', 'automatorwp_wpforo_ajax_get_forums' );

/**
 * Ajax function for selecting topics
 *
 * @since 1.0.0
 */
function automatorwp_wpforo_ajax_get_topics() {
    // Security check, forces to die if not security passed
    check_ajax_referer( 'automatorwp_admin', 'nonce' );

    // Permissions check
    if( ! current_user_can( automatorwp_get_manager_capability() ) ) {
        wp_send_json_error( __( 'You\'re not allowed to perform this action.', 'automatorwp' ) );
    }

    global $wpdb;

    // Pull back the search string
    $search = isset( $_REQUEST['q'] ) ? $wpdb->esc_like( $_REQUEST['q'] ) : '';

    $table = WPF()->tables->topics;
    $boards = WPF()->tables->boards;

    // Get the boards
    $results_boards = $wpdb->get_results( 
        "SELECT boardid FROM {$boards}"
    );

    // Get the topics
    $results = $wpdb->get_results( $wpdb->prepare(
        "SELECT f.topicid AS id, f.title AS text
        FROM {$table} AS f
        WHERE f.title LIKE %s",
        "%%{$search}%%"
    ) );

    if ( count( $results_boards ) > 1 ) {
        foreach ( $results_boards as $board ){
            if ( $board->boardid !== '0' ) {
                $table = $wpdb->prefix . 'wpforo_' . $board->boardid . '_topics';
                // Get the topics
                $results_topics = $wpdb->get_results( $wpdb->prepare(
                    "SELECT f.topicid AS id, f.title AS text
                    FROM {$table} AS f
                    WHERE f.title LIKE %s",
                    "%%{$search}%%"
                ) );
                
                foreach ($results_topics as $topic ) {
                    $results[] = array(
                        'id' => $board->boardid . '-' . $topic->id,
                        'text' => $topic->text,
                    );
                }
            }
        }
    } 

    // Prepend option none
    $results = automatorwp_ajax_parse_extra_options( $results );

    // Return our results
    wp_send_json_success( $results );
    die;

}
add_action( 'wp_ajax_automatorwp_wpforo_get_topics', 'automatorwp_wpforo_ajax_get_topics' );
```
