esc_like( sanitize_text_field( $_REQUEST['q'] ) ) : ''; $results = array(); if( gamipress_is_network_wide_active() ) { // Look for results on all sites on a multisite install foreach( gamipress_get_network_site_ids() as $site_id ) { // Switch to site switch_to_blog( $site_id ); // Get the current site name to append it to results $site_name = get_bloginfo( 'name' ); // Check if plugin is active on this site if( function_exists( 'wpFluent' ) ) { // Get the forms $site_forms = wpFluent()->table( 'fluentform_forms' ) ->select( array( 'id', 'title' ) ) ->where( 'title', 'LIKE', "%{$search}%" ) ->get(); foreach ( $site_forms as $form ) { // Results should meet same structure like posts $results[] = array( 'ID' => $form->id, 'post_title' => $form->title, 'site_id' => $site_id, 'site_name' => $site_name, ); } } // Restore current site restore_current_blog(); } } else { // Get the forms $forms = wpFluent()->table( 'fluentform_forms' ) ->select( array( 'id', 'title' ) ) ->where( 'title', 'LIKE', "%{$search}%" ) ->get(); foreach( $forms as $form ) { $results[] = array( 'id' => $form->id, 'text' => $form->title, ); } } // Return our results wp_send_json_success( $results ); die; } } add_action( 'wp_ajax_gamipress_get_posts', 'gamipress_fluentform_ajax_get_posts', 5 );