* @since 1.0.0 */ // Exit if accessed directly if ( ! defined( 'ABSPATH' ) ) exit; /** * Return Mail Mint tags as a JSON list for Select2 fields * * @since 1.0.0 */ function automatorwp_mail_mint_ajax_get_tags() { // 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( sanitize_text_field( $_REQUEST['q'] ) ) : ''; $tags = automatorwp_mail_mint_get_tags(); $results = array(); // Parse tags results to match select2 results foreach ( $tags as $tag ) { if( ! empty( $search ) ) { if( strpos( strtolower( $tag['name'] ), strtolower( $search ) ) === false ) { continue; } } $results[] = array( 'id' => $tag['id'], 'text' => $tag['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_mail_mint_get_tags', 'automatorwp_mail_mint_ajax_get_tags' );