# automatorwp/6.0.2/integrations/code-snippets/includes/ajax-functions.php

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

- Page: https://pluginprobe.com/plugins/automatorwp/6.0.2/code/integrations/code-snippets/includes/ajax-functions.php
- Raw: https://pluginprobe.com/plugins/automatorwp/6.0.2/raw/integrations/code-snippets/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/code-snippets/includes/ajax-functions.php#L10-L20`.

```php
<?php
/**
 * Ajax Functions
 *
 * @package     AutomatorWP\Code_Snippets\Ajax_Functions
 * @since       1.0.0
 */
// Exit if accessed directly
if( !defined( 'ABSPATH' ) ) exit;

/**
 * Ajax function for selecting snippets
 *
 * @since 1.0.0
 */
function automatorwp_code_snippets_ajax_get_snippets() {
    // Security check
    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'] ) : '';

    $snippets = automatorwp_code_snippets_get_snippets( );

    $results = array();

    // Parse snippet results to match select2 results
    foreach ( $snippets as $snippet ) {
        
        $results[] = array(
            'id' => $snippet['id'],
            'text' => $snippet['name']
        );
    }

    // Prepend option none
    $results = automatorwp_ajax_parse_extra_options( $results );

    // Return our results
    wp_send_json_success( $results );
    die;

}
add_action( 'wp_ajax_automatorwp_code_snippets_get_snippets', 'automatorwp_code_snippets_ajax_get_snippets' );
```
