esc_like( $_REQUEST['q'] ) : ''; // Get the forms $forms = FrmForm::getAll(); foreach( $forms as $form ) { if( ! empty( $search ) ) { if( strpos( strtolower( $form->name ), strtolower( $search ) ) === false ) { continue; } } // Results should meet the Select2 structure $results[] = array( 'id' => $form->id, 'text' => $form->name, ); } // Prepend option none $results = automatorwp_ajax_get_ajax_results_option_none( $results ); // Return our results wp_send_json_success( $results ); die; } add_action( 'wp_ajax_automatorwp_formidable_forms_get_forms', 'automatorwp_formidable_forms_ajax_get_forms', 5 );