PluginProbe
AutomatorWP – No-Code Workflow Automation, Integration & Webhooks Plugin, now with AI / 6.0.2
AutomatorWP – No-Code Workflow Automation, Integration & Webhooks Plugin, now with AI v6.0.2
6.0.2 6.0.1 6.0.0 5.8.6 5.8.5 5.8.4 5.8.3 5.8.2 5.8.1 5.8.0 5.7.9.2 5.7.9.1 5.7.8 5.7.9 5.7.6 5.7.7 5.7.5 5.7.4 5.7.3 5.7.2 5.7.1 trunk 5.6.0 5.6.1 5.6.2 All 33 releases
automatorwp / integrations / arforms / includes / ajax-functions.php

ajax-functions.php in AutomatorWP – No-Code Workflow Automation, Integration & Webhooks Plugin, now with AI 6.0.2, at integrations/arforms/includes/ajax-functions.php

57 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 * Ajax Functions
4 *
5 * @package AutomatorWP\ARForms\includes\Ajax_Functions
6 * @since 1.0.0
7 */
8 // Exit if accessed directly
9 if( !defined( 'ABSPATH' ) ) exit;
10
11 /**
12 * Ajax function for selecting forms
13 *
14 * @since 1.0.0
15 */
16 function automatorwp_arforms_ajax_get_forms() {
17 // Security check, forces to die if not security passed
18 check_ajax_referer( 'automatorwp_admin', 'nonce' );
19
20 // Permissions check
21 if( ! current_user_can( automatorwp_get_manager_capability() ) ) {
22 wp_send_json_error( __( 'You\'re not allowed to perform this action.', 'automatorwp' ) );
23 }
24
25 global $wpdb;
26
27 // Pull back the search string
28 $search = isset( $_REQUEST['q'] ) ? $wpdb->esc_like( $_REQUEST['q'] ) : '';
29
30 $forms = automatorwp_arforms_get_forms( );
31
32 $results = array();
33
34 // Parse form results to match select2 results
35 foreach ( $forms as $form ) {
36
37 if( ! empty( $search ) ) {
38 if( strpos( strtolower( $form['name'] ), strtolower( $search ) ) === false ) {
39 continue;
40 }
41 }
42
43 $results[] = array(
44 'id' => $form['id'],
45 'text' => $form['name']
46 );
47 }
48
49 // Prepend option none
50 $results = automatorwp_ajax_parse_extra_options( $results );
51
52 // Return our results
53 wp_send_json_success( $results );
54 die;
55
56 }
57 add_action( 'wp_ajax_automatorwp_arforms_get_forms', 'automatorwp_arforms_ajax_get_forms' );