automator_maybe_parse_token
Filters tokens for potential parsing within the Automator plugin's core functionality before replacement.
add_filter( 'automator_maybe_parse_token', $callback, 10, 6 );
Description
Filters the processed token value before it's returned. Developers can use this hook to modify token parsing logic, potentially to handle custom token formats or add specific parsing rules based on recipe, trigger, or user data.
Usage
add_filter( 'automator_maybe_parse_token', 'your_function_name', 10, 6 );
Parameters
-
$return(mixed) - This parameter holds the value that is being returned by the hook, which might be modified by callbacks.
-
$pieces(mixed) - This parameter contains the initial value that will be returned and potentially modified by the filter.
-
$recipe_id(mixed) - This parameter contains the parsed pieces of the token being processed.
-
$trigger_data(mixed) - This parameter contains the ID of the current recipe being processed.
-
$user_id(mixed) - This parameter contains the ID of the user associated with the trigger data.
-
$replace_args(mixed) - This parameter represents the ID of the user for whom the token is being parsed, if applicable.
Return Value
The filtered value.
Examples
add_filter( 'automator_maybe_parse_token', 'my_custom_automator_token_parser', 20, 6 );
/**
* Custom function to parse specific tokens for our plugin.
*
* This function demonstrates how to intercept the automator_maybe_parse_token
* filter to add custom token parsing logic.
*
* @param mixed $return The current return value from the filter.
* @param mixed $pieces The pieces of the token being parsed.
* @param int $recipe_id The ID of the recipe.
* @param array $trigger_data Data related to the trigger.
* @param int $user_id The ID of the user.
* @param array $replace_args Arguments for replacement.
*
* @return mixed The modified return value, potentially with parsed tokens.
*/
function my_custom_automator_token_parser( $return, $pieces, $recipe_id, $trigger_data, $user_id, $replace_args ) {
// Example: Check if the token is for a custom post type 'my_plugin_item'
// and the specific token key is 'my_custom_item_title'.
if ( is_array( $pieces ) && isset( $pieces['token'] ) && 'my_custom_item_title' === $pieces['token'] ) {
// Assuming $trigger_data contains information about the trigger,
// and we can extract an item ID from it.
if ( ! empty( $trigger_data['item_id'] ) ) {
$item_id = $trigger_data['item_id'];
$item = get_post( $item_id );
if ( $item && 'my_plugin_item' === $item->post_type ) {
// Return the title of the custom post.
$return = $item->post_title;
}
}
}
// Example: Check for a user meta token.
if ( is_array( $pieces ) && isset( $pieces['token'] ) && 'my_plugin_user_custom_field' === $pieces['token'] ) {
if ( $user_id ) {
$user_meta_value = get_user_meta( $user_id, 'my_plugin_custom_user_meta_key', true );
if ( ! empty( $user_meta_value ) ) {
$return = $user_meta_value;
}
}
}
// Always return the value, whether modified or not.
return $return;
}
Placement
This code should be placed in the functions.php file of your active theme, a custom plugin, or using a code snippets plugin.
Source Code
src/core/deprecated/legacy-token-parser.php:650
src/core/lib/utilities/class-automator-input-parser.php:488
$return = $this->v3_parser( $return, $replace_args, $args );
if ( isset( $args['loop'] ) && is_array( $args['loop'] ) ) {
$replace_args['loop'] = $args['loop'];
}
$return = apply_filters( 'automator_maybe_parse_token', $return, $pieces, $recipe_id, $trigger_data, $user_id, $replace_args );
/**
* Filter automator_parse_token_for_trigger_{{integration}}_{{trigger_code}}
*
* {{integration}} - The integration name of the trigger you are attaching the tokens into.
* {{trigger_code}}- The trigger code of the trigger you are attaching the tokens into.
*
Internal Usage
Found in src/integrations/buddyboss/tokens/bdb-tokens.php:27:
add_filter( 'automator_maybe_parse_token', array( $this, 'parse_bp_token' ), 20, 6 );
Found in src/integrations/autonami/tokens/autonami-tokens.php:21:
add_filter( 'automator_maybe_parse_token', array( $this, 'parse_tokens' ), 20, 6 );
Found in src/integrations/thrive-ovation/tokens/thrive-ovation-tokens.php:28:
add_filter( 'automator_maybe_parse_token', array( $this, 'parse_thrive_ovation_tokens' ), 20, 6 );
Found in src/integrations/restrict-content/tokens/restrict-content-tokens.php:27:
add_filter( 'automator_maybe_parse_token', array( $this, 'rc_token' ), 20, 6 );
Found in src/integrations/presto/tokens/presto-tokens.php:25:
//add_filter( 'automator_maybe_parse_token', array( $this, 'presto_token' ), 20, 6 );
Found in src/integrations/wp-user-manager/tokens/wpum-tokens.php:77:
add_filter( 'automator_maybe_parse_token', array( $this, 'parse_wpum_tokens' ), 20, 6 );
Found in src/integrations/wp-download-manager/tokens/wpdm-tokens.php:20:
add_filter( 'automator_maybe_parse_token', array( $this, 'parse_wpdm_tokens' ), 20, 6 );
Found in src/integrations/wp-courseware/tokens/wpcw-tokens.php:19:
add_filter( 'automator_maybe_parse_token', [ $this, 'wpcw_token' ], 20, 6 );
Found in src/core/deprecated/legacy-token-parser.php:38:
// add_filter( 'automator_maybe_parse_token', array( $this, 'automator_maybe_parse_postmeta_token' ), 99999, 6 );
Found in src/integrations/formidable/tokens/fi-tokens.php:19:
add_filter( 'automator_maybe_parse_token', array( $this, 'fi_token' ), 40, 6 );
Found in src/integrations/formidable/tokens/fi-tokens.php:22:
add_filter( 'automator_maybe_parse_token', array( $this, 'fi_entry_tokens' ), 40, 6 );
Found in src/integrations/whatsapp/tokens/wa-message-delivery-tokens.php:33:
add_filter( 'automator_maybe_parse_token', array( $this, 'parse_token' ), 20, 6 );
Found in src/integrations/wpforms/tokens/wpf-tokens.php:22:
add_filter( 'automator_maybe_parse_token', array( $this, 'wpf_token' ), 20, 6 );
Found in src/integrations/wpforms/tokens/wpf-tokens.php:32:
add_filter( 'automator_maybe_parse_token', array( $this, 'wpf_entry_tokens' ), 20, 6 );
Found in src/integrations/ultimate-member/tokens/um-tokens.php:16:
add_filter( 'automator_maybe_parse_token', array( $this, 'um_token' ), 20, 6 );
Found in src/integrations/wp-simple-pay/tokens/wpsp-tokens.php:35:
add_filter( 'automator_maybe_parse_token', array( $this, 'parse_wpsp_tokens' ), 9000, 6 );
Found in src/integrations/wpforo/tokens/wpf-topic-added-tokens.php:21:
add_filter( 'automator_maybe_parse_token', array( $this, 'user_replies_to_topic' ), 20, 6 );
Found in src/core/classes/class-calculation-token.php:67:
add_filter( 'automator_maybe_parse_token', array( $this, 'parse_token' ), 999, 6 );
Found in src/integrations/fluent-crm/tokens/fcrm-tokens.php:30:
add_filter( 'automator_maybe_parse_token', array( $this, 'fcrm_token' ), 20, 6 );
Found in src/integrations/fluent-crm/tokens/fcrm-tokens.php:32:
add_filter( 'automator_maybe_parse_token', array( $this, 'fcrm_status_tokens' ), 36, 6 );
Found in src/integrations/ws-form-lite/tokens/ws-form-lite-tokens.php:19:
add_filter( 'automator_maybe_parse_token', array( $this, 'parse_wsformlite_tokens' ), 20, 6 );
Found in src/integrations/learndash/tokens/ld-tokens.php:61:
add_filter( 'automator_maybe_parse_token', array( $this, 'ld_tokens' ), 20, 6 );
Found in src/integrations/learndash/tokens/ld-tokens.php:62:
add_filter( 'automator_maybe_parse_token', array( $this, 'ld_course_status_token' ), 9999, 6 );
Found in src/integrations/learndash/tokens/ld-tokens.php:63:
add_filter( 'automator_maybe_parse_token', array( $this, 'ld_course_access_expiry_token' ), 9999, 6 );
Found in src/integrations/learndash/tokens/ld-tokens.php:64:
add_filter( 'automator_maybe_parse_token', array( $this, 'ld_quiz_parse_q_and_a_tokens' ), 20, 6 );
Found in src/integrations/memberpress-courses/tokens/mpc-tokens.php:16:
add_filter( 'automator_maybe_parse_token', array( $this, 'mpc_token' ), 20, 6 );
Found in src/integrations/masterstudy-lms/tokens/masterstudy-tokens.php:20:
add_filter( 'automator_maybe_parse_token', array( $this, 'masterstudy_token' ), 20, 6 );
Found in src/integrations/armember/tokens/armember-tokens.php:39:
add_filter( 'automator_maybe_parse_token', array( $this, 'parse_armember_tokens' ), 20, 6 );
Found in src/integrations/advanced-ads/tokens/advanced-ads-tokens.php:17:
add_filter( 'automator_maybe_parse_token', array( $this, 'parse_advads_tokens' ), 20, 6 );
Found in src/integrations/event-tickets/tokens/ec-tokens.php:24:
add_filter( 'automator_maybe_parse_token', array( $this, 'parse_ec_tokens' ), 20, 6 );
Found in src/integrations/wplms/tokens/wplms-tokens.php:24:
add_filter( 'automator_maybe_parse_token', array( $this, 'wplms_token' ), 20, 6 );
Found in src/integrations/elementor/tokens/elem-tokens.php:18:
add_filter( 'automator_maybe_parse_token', array( $this, 'elem_token' ), 20, 6 );
Found in src/integrations/url/tokens/url-tokens.php:32:
add_filter( 'automator_maybe_parse_token', array( $this, 'parse_url_tokens' ), 300, 6 );
Found in src/integrations/jet-crm/tokens/jetcrm-tokens.php:30:
add_filter( 'automator_maybe_parse_token', array( $this, 'parse_jetcrm_tokens' ), 20, 6 );
Found in src/integrations/happyforms/tokens/hf-tokens.php:14:
add_filter( 'automator_maybe_parse_token', array( $this, 'hf_token' ), 20, 6 );
Found in src/integrations/ameliabooking/tokens/ameliabooking-tokens.php:63:
add_filter( 'automator_maybe_parse_token', array( $this, 'parse_tokens' ), 40, 6 );
Found in src/integrations/ameliabooking/tokens/ameliabooking-tokens.php:66:
add_filter( 'automator_maybe_parse_token', array( $this, 'parse_tokens_reservation' ), 20, 6 );
Found in src/integrations/wp/tokens/wp-post-tokens.php:51:
add_filter( 'automator_maybe_parse_token', array( $this, 'parse_wp_comments_tokens' ), 9000, 6 );
Found in src/integrations/wp/tokens/wp-post-tokens.php:53:
add_filter( 'automator_maybe_parse_token', array( $this, 'parse_wp_post_tokens' ), 9000, 6 );
Found in src/integrations/easy-affiliate/tokens/esaf-tokens.php:42:
add_filter( 'automator_maybe_parse_token', array( $this, 'parse_esaf_tokens' ), 20, 6 );
Found in src/integrations/gamipress/tokens/gamipress-tokens.php:19:
add_filter( 'automator_maybe_parse_token', array( $this, 'parse_token' ), 20, 6 );
Found in src/integrations/mailchimp/tokens/mailchimp-tokens.php:28:
add_filter( 'automator_maybe_parse_token', array( $this, 'parse_tokens' ), 20, 6 );
Found in src/integrations/wp/tokens/wp-tokens.php:34:
add_filter( 'automator_maybe_parse_token', array( $this, 'parse_wproles_token' ), 20, 6 );
Found in src/integrations/wp-webhooks/tokens/wpwh-tokens.php:27:
add_filter( 'automator_maybe_parse_token', array( $this, 'wpwh_token' ), 20, 6 );
Found in src/integrations/forminator/tokens/fr-tokens.php:19:
add_filter( 'automator_maybe_parse_token', array( $this, 'fr_token' ), 20, 6 );
Found in src/integrations/wp-all-import/tokens/wpai-tokens.php:21:
add_filter( 'automator_maybe_parse_token', array( $this, 'parse_wpai_tokens' ), 20, 6 );
Found in src/integrations/studiocart/tokens/studiocart-tokens.php:15:
add_filter( 'automator_maybe_parse_token', array( $this, 'studiocart_token' ), 999999, 6 );
Found in src/integrations/contact-form7/tokens/cf7-tokens.php:21:
add_filter( 'automator_maybe_parse_token', array( $this, 'parse_cf7_token' ), 20, 6 );
Found in src/integrations/divi/tokens/divi-tokens.php:16:
add_filter( 'automator_maybe_parse_token', array( $this, 'divi_token' ), 100, 6 );
Found in src/integrations/wp-mail-smtp-pro/tokens/wpmsmtp-tokens.php:29:
add_filter( 'automator_maybe_parse_token', array( $this, 'parse_wp_mail_smtp_tokens' ), 2122, 6 );
Found in src/integrations/events-manager/tokens/em-tokens.php:28:
add_filter( 'automator_maybe_parse_token', array( $this, 'parse_em_tokens' ), 999, 6 );
Found in src/integrations/uncanny-tincanny/tokens/uotc-tokens.php:38:
add_filter( 'automator_maybe_parse_token', array( $this, 'uotc_tokens' ), 20, 6 );
Found in src/integrations/wc-memberships/tokens/wcm-tokens.php:34:
add_filter( 'automator_maybe_parse_token', array( $this, 'wcm_parse_tokens' ), 20, 6 );
Found in src/integrations/edd/tokens/edd-tokens.php:26:
add_filter( 'automator_maybe_parse_token', array( $this, 'parse_edd_trigger_tokens' ), 999, 6 );
Found in src/integrations/edd/tokens/edd-tokens.php:33:
add_filter( 'automator_maybe_parse_token', array( $this, 'parse_edd_tokens' ), 20, 6 );
Found in src/integrations/uncanny-groups/tokens/uncanny-groups-tokens.php:16:
add_filter( 'automator_maybe_parse_token', array( $this, 'parse_uncanny_groups_token' ), 20, 6 );
Found in src/integrations/bbpress/tokens/bbpress-tokens.php:16:
add_filter( 'automator_maybe_parse_token', array( $this, 'parse_bbpress_tokens' ), 999, 6 );
Found in src/integrations/ninja-forms/tokens/nf-tokens.php:16:
add_filter( 'automator_maybe_parse_token', array( $this, 'nf_token' ), 20, 6 );
Found in src/integrations/badgeos/tokens/badgeos-tokens.php:17:
add_filter( 'automator_maybe_parse_token', array( $this, 'parse_token' ), 20, 6 );
Found in src/integrations/fluent-support/tokens/flsupport-tokens.php:19:
add_filter( 'automator_maybe_parse_token', array( $this, 'parse_flsupport_trigger_tokens' ), 20, 6 );
Found in src/integrations/wishlist-member/tokens/wm-tokens.php:22:
add_filter( 'automator_maybe_parse_token', array( $this, 'parse_wm_token' ), 20, 6 );
Found in src/integrations/buddypress/tokens/bp-tokens.php:22:
add_filter( 'automator_maybe_parse_token', array( $this, 'parse_bp_token' ), 20, 6 );
Found in src/integrations/wp-polls/tokens/wpp-tokens.php:20:
add_filter( 'automator_maybe_parse_token', array( $this, 'wp_polls_token' ), 20, 6 );
Found in src/core/lib/recipe-parts/tokens/abstract-universal-token.php:27:
add_filter( 'automator_maybe_parse_token', array( $this, 'validate_recipe_token_parser' ), 10, 6 );
Found in src/core/lib/recipe-parts/global-custom-name-field.php:38:
add_filter( 'automator_maybe_parse_token', array( $this, 'parse_custom_name_token' ), PHP_INT_MAX, 6 );
Found in src/integrations/uncanny-ceus/triggers/uncannyceus-earns-number-ceus.php:32:
add_filter( 'automator_maybe_parse_token', array( $this, 'tokens' ), 20, 6 );
Found in src/integrations/modern-events-calendar/tokens/mec-event-tokens.php:39:
add_filter( 'automator_maybe_parse_token', array( $this, 'parse_tokens' ), 36, 6 );
Found in src/integrations/give/tokens/give-tokens.php:34:
add_filter( 'automator_maybe_parse_token', array( $this, 'parse_give_donation_token' ), 30, 6 );
Found in src/integrations/uncanny-automator/tokens/uoa-tokens.php:80:
add_filter( 'automator_maybe_parse_token', array( $this, 'uoa_token' ), 20, 6 );
Found in src/integrations/uncanny-automator/tokens/uoa-tokens.php:81:
add_filter( 'automator_maybe_parse_token', array( $this, 'uoa_anonymous_token' ), 20, 6 );
Found in src/integrations/memberpress/tokens/mp-tokens.php:19:
add_filter( 'automator_maybe_parse_token', array( $this, 'mp_token' ), 222, 6 );
Found in src/integrations/wholesale-suite/tokens/wss-tokens.php:24:
add_filter( 'automator_maybe_parse_token', array( $this, 'parse_wss_tokens' ), 20, 6 );
Found in src/integrations/paid-memberships-pro/tokens/pmp-tokens.php:23:
add_filter( 'automator_maybe_parse_token', array( $this, 'pmp_token' ), 20, 6 );
Found in src/integrations/caldera-forms/tokens/cf-tokens.php:16:
add_filter( 'automator_maybe_parse_token', array( $this, 'parse_cf_token' ), 20, 6 );
Found in src/integrations/caldera-forms/tokens/cf-tokens.php:20:
add_filter( 'automator_maybe_parse_token', array( $this, 'cf_entry_tokens' ), 20, 6 );
Found in src/integrations/affiliate-wp/tokens/affwp-tokens.php:17:
add_filter( 'automator_maybe_parse_token', array( $this, 'parse_affwp_trigger_tokens' ), 20, 6 );
Found in src/integrations/wp-fluent-forms/tokens/wpff-tokens.php:27:
add_filter( 'automator_maybe_parse_token', array( $this, 'wpff_token' ), 20, 6 );
Found in src/integrations/wp-fluent-forms/tokens/wpff-tokens.php:30:
add_filter( 'automator_maybe_parse_token', array( $this, 'wpff_entry_tokens' ), 20, 6 );
Found in src/core/lib/utilities/class-automator-input-parser.php:89:
//add_filter( 'automator_maybe_parse_token', array( $this, 'parse_postmeta_token' ), 10, 6 );
Found in uncanny-automator-pro/src/integrations/armember/tokens/armember-pro-tokens.php:21:
add_filter( 'automator_maybe_parse_token', array( $this, 'parse_armember_tokens' ), 20, 6 );
Found in uncanny-automator-pro/src/integrations/ameliabooking/tokens/ameliabooking-pro-service-tokens.php:54:
add_filter( 'automator_maybe_parse_token', array( $this, 'parse_pro_tokens' ), 20, 6 );
Found in uncanny-automator-pro/src/integrations/mycred/tokens/mycred-tokens.php:20:
add_filter( 'automator_maybe_parse_token', [ $this, 'parse_mycred_token' ], 20, 6 );
Found in uncanny-automator-pro/src/integrations/give/tokens/give-pro-tokens.php:67:
add_filter( 'automator_maybe_parse_token', array( $this, 'parse_give_donation_token' ), 20, 6 );
Found in uncanny-automator-pro/src/integrations/ameliabooking/tokens/ameliabooking-pro-tokens.php:34:
add_filter( 'automator_maybe_parse_token', array( $this, 'parse_pro_tokens' ), 20, 6 );
Found in uncanny-automator-pro/src/integrations/wp-simple-pay/tokens/wpsp-pro-tokens.php:25:
add_filter( 'automator_maybe_parse_token', array( $this, 'parse_wpsp_id_tokens' ), 9200, 6 );
Found in uncanny-automator-pro/src/integrations/formidable/tokens/fi-anon-tokens.php:18:
add_filter( 'automator_maybe_parse_token', [ $this, 'fi_token' ], 20, 6 );
Found in uncanny-automator-pro/src/integrations/formidable/tokens/fi-pro-tokens.php:16:
add_filter( 'automator_maybe_parse_token', array( $this, 'fi_token' ), 20, 6 );
Found in uncanny-automator-pro/src/integrations/gamipress/tokens/gp-pro-tokens.php:23:
add_filter( 'automator_maybe_parse_token', array( $this, 'gamipress_parse_token' ), 20, 6 );
Found in uncanny-automator-pro/src/integrations/groundhogg/tokens/groundhogg-anon-tokens.php:45:
add_filter( 'automator_maybe_parse_token', array( $this, 'gh_parse_tokens' ), 20, 6 );
Found in uncanny-automator-pro/src/integrations/groundhogg/tokens/groundhogg-pro-tokens.php:19:
add_filter( 'automator_maybe_parse_token', array( $this, 'gh_parse_tokens' ), 20, 6 );
Found in uncanny-automator-pro/src/integrations/magic-button/tokens/magic-button-tokens.php:56:
add_filter( 'automator_maybe_parse_token', array( $this, 'parse_magicbutton_token' ), 20, 6 );
Found in uncanny-automator-pro/src/integrations/memberpress-courses/tokens/mpc-pro-tokens.php:14:
add_filter( 'automator_maybe_parse_token', array( $this, 'mpc_pro_token' ), 200, 6 );
Found in uncanny-automator-pro/src/integrations/divi/tokens/divi-pro-tokens.php:16:
add_filter( 'automator_maybe_parse_token', array( $this, 'divi_token' ), 20, 6 );
Found in uncanny-automator-pro/src/integrations/restrict-content/tokens/restrict-content-pro-tokens.php:22:
add_filter( 'automator_maybe_parse_token', array( $this, 'rc_token_cancel' ), 20, 6 );
Found in uncanny-automator-pro/src/integrations/restrict-content/tokens/restrict-content-pro-tokens.php:23:
add_filter( 'automator_maybe_parse_token', array( $this, 'rc_token_expire' ), 20, 6 );
Found in uncanny-automator-pro/src/integrations/happyforms/tokens/hf-anon-tokens.php:22:
add_filter( 'automator_maybe_parse_token', [ $this, 'hf_token' ], 20, 6 );
Found in uncanny-automator-pro/src/integrations/wp-user-manager/tokens/wpum-pro-tokens.php:65:
add_filter( 'automator_maybe_parse_token', [ $this, 'parse_wpum_tokens' ], 20, 6 );
Found in uncanny-automator-pro/src/integrations/paid-memberships-pro/tokens/pmp-pro-tokens.php:17:
add_filter( 'automator_maybe_parse_token', array( $this, 'parse_pmp_pro_tokens' ), 20, 6 );
Found in uncanny-automator-pro/src/integrations/forminator/tokens/fr-anon-tokens.php:25:
add_filter( 'automator_maybe_parse_token', array( $this, 'fr_token_anon' ), 55, 6 );
Found in uncanny-automator-pro/src/integrations/presto/tokens/presto-pro-tokens.php:16:
add_filter( 'automator_maybe_parse_token', array( $this, 'percent' ), 20, 6 );
Found in uncanny-automator-pro/src/integrations/acf/tokens/acf-tokens.php:25:
add_filter( 'automator_maybe_parse_token', array( $this, 'parse_tokens' ), 36, 6 );
Found in uncanny-automator-pro/src/integrations/acf/tokens/acf-tokens.php:27:
add_filter( 'automator_maybe_parse_token', array( $this, 'parse_tokens_user_form' ), 20, 6 );
Found in uncanny-automator-pro/src/integrations/jet-crm/tokens/jetcrm-pro-tokens.php:44:
add_filter( 'automator_maybe_parse_token', array( $this, 'parse_jetcrm_pro_tokens' ), 20, 6 );
Found in uncanny-automator-pro/src/integrations/learndash/tokens/ld-pro-tokens.php:68:
add_filter( 'automator_maybe_parse_token', array( $this, 'ld_assignment_tokens' ), 20, 6 );
Found in uncanny-automator-pro/src/integrations/wpforo/tokens/wpf-user-replies-to-topic-tokens.php:19:
add_filter( 'automator_maybe_parse_token', array( $this, 'user_replies_to_topic' ), 20, 6 );
Found in uncanny-automator-pro/src/integrations/easy-affiliate/tokens/esaf-pro-tokens.php:37:
add_filter( 'automator_maybe_parse_token', array( $this, 'parse_esaf_tokens' ), 21, 6 );
Found in uncanny-automator-pro/src/integrations/uncanny-automator/tokens/uoa-magic-button-tokens.php:26:
add_filter( 'automator_maybe_parse_token', array( $this, 'parse_magicbutton_token' ), 20, 6 );
Found in uncanny-automator-pro/src/integrations/uncanny-automator/tokens/uoa-anon-tokens.php:28:
add_filter( 'automator_maybe_parse_token', array( $this, 'parse_anon_token' ), 20, 6 );
Found in uncanny-automator-pro/src/integrations/advanced-ads/tokens/advads-pro-tokens.php:19:
add_filter( 'automator_maybe_parse_token', array( $this, 'parse_advads_pro_tokens' ), 22, 6 );
Found in uncanny-automator-pro/src/integrations/wc-memberships/tokens/wcm-pro-tokens.php:35:
add_filter( 'automator_maybe_parse_token', array( $this, 'wcm_parse_pro_tokens' ), 20, 6 );
Found in uncanny-automator-pro/src/integrations/masterstudy-lms/tokens/masterstudy-tokens.php:20:
add_filter( 'automator_maybe_parse_token', [ $this, 'masterstudy_token' ], 20, 6 );
Found in uncanny-automator-pro/src/integrations/wpforms/tokens/wpf-anon-tokens.php:22:
add_filter( 'automator_maybe_parse_token', array( $this, 'wpf_pro_token' ), 200, 6 );
Found in uncanny-automator-pro/src/integrations/affiliate-wp/tokens/affwp-pro-tokens.php:69:
add_filter( 'automator_maybe_parse_token', array( $this, 'parse_affwp_pro_trigger_tokens' ), 20, 6 );
Found in uncanny-automator-pro/src/integrations/event-tickets/tokens/et-anon-tokens.php:38:
add_filter( 'automator_maybe_parse_token', array( $this, 'et_anonattendee_tokens' ), 200, 6 );
Found in uncanny-automator-pro/src/integrations/edd/tokens/edd-pro-tokens.php:23:
add_filter( 'automator_maybe_parse_token', array( $this, 'parse_edd_pro_trigger_tokens' ), 20, 6 );
Found in uncanny-automator-pro/src/integrations/url/tokens/url-pro-tokens.php:29:
add_filter( 'automator_maybe_parse_token', array( $this, 'parse_url_tokens_pro' ), 300, 6 );
Found in uncanny-automator-pro/src/integrations/elementor/tokens/elem-anon-tokens.php:17:
add_filter( 'automator_maybe_parse_token', array( $this, 'elem_token' ), 20, 6 );
Found in uncanny-automator-pro/src/integrations/caldera-forms/tokens/cf-anon-tokens.php:25:
add_filter( 'automator_maybe_parse_token', array( $this, 'parse_cf_token' ), 20, 6 );
Found in uncanny-automator-pro/src/integrations/wp/tokens/wp-pro-tokens.php:87:
add_filter( 'automator_maybe_parse_token', array( $this, 'parse_wp_tokens' ), 300, 6 );
Found in uncanny-automator-pro/src/integrations/wp/tokens/wp-pro-tokens.php:88:
add_filter( 'automator_maybe_parse_token', array( $this, 'parse_wp_comments_tokens' ), 220, 6 );
Found in uncanny-automator-pro/src/integrations/wp/tokens/wp-pro-tokens.php:89:
add_filter( 'automator_maybe_parse_token', array( $this, 'parse_wp_status_tokens' ), 200, 6 );
Found in uncanny-automator-pro/src/integrations/wp/tokens/wp-pro-tokens.php:90:
add_filter( 'automator_maybe_parse_token', array( $this, 'parse_wp_user_fields_tokens' ), 210, 6 );
Found in uncanny-automator-pro/src/integrations/wp/tokens/wp-pro-tokens.php:91:
add_filter( 'automator_maybe_parse_token', array( $this, 'parse_wp_token_roles' ), 21, 6 );
Found in uncanny-automator-pro/src/integrations/wp/tokens/wp-pro-tokens.php:113:
add_filter( 'automator_maybe_parse_token', array( $this, 'parse_wp_users_tokens' ), 21, 6 );
Found in uncanny-automator-pro/src/integrations/wp/tokens/wp-pro-tokens.php:115:
add_filter( 'automator_maybe_parse_token', array( $this, 'parse_wp_post_meta_tokens' ), 21, 6 );
Found in uncanny-automator-pro/src/integrations/wp/tokens/wp-anon-tokens.php:18:
// add_filter( 'automator_maybe_parse_token', array( $this, 'parse_wp_post_token' ), 9999999999, 6 );
Found in uncanny-automator-pro/src/integrations/wp/tokens/wp-anon-tokens.php:19:
// add_filter( 'automator_maybe_parse_token', array( $this, 'parse_anonusercommented_token' ), 20, 6 );
Found in uncanny-automator-pro/src/integrations/wp/tokens/wp-magic-button-tokens.php:17:
add_filter( 'automator_maybe_parse_token', array( $this, 'parse_magicbutton_token' ), 20, 6 );
Found in uncanny-automator-pro/src/integrations/wp-fluent-forms/tokens/wpff-pro-tokens.php:19:
add_filter( 'automator_maybe_parse_token', array( $this, 'wpff_anon_token' ), 20, 6 );
Found in uncanny-automator-pro/src/integrations/wp-fluent-forms/tokens/wpff-pro-tokens.php:20:
add_filter( 'automator_maybe_parse_token', array( $this, 'wpff_token' ), 20, 6 );
Found in uncanny-automator-pro/src/integrations/buddypress/tokens/bp-pro-tokens.php:25:
add_filter( 'automator_maybe_parse_token', array( $this, 'parse_bp_pro_token' ), 20, 6 );
Found in uncanny-automator-pro/src/integrations/fluent-crm/tokens/fcrm-tokens.php:26:
add_filter( 'automator_maybe_parse_token', array( $this, 'fcrm_token' ), 20, 6 );
Found in uncanny-automator-pro/src/integrations/studiocart/tokens/studiocart-pro-tokens.php:15:
add_filter( 'automator_maybe_parse_token', array( $this, 'studiocart_token' ), 999999, 6 );
Found in uncanny-automator-pro/src/integrations/studiocart/tokens/studiocart-pro-tokens.php:16:
add_filter( 'automator_maybe_parse_token', array( $this, 'studiocart_token_order_guest' ), 999999, 6 );
Found in uncanny-automator-pro/src/integrations/wp-mail-smtp-pro/tokens/wpmsmtp-pro-tokens.php:51:
add_filter( 'automator_maybe_parse_token', array( $this, 'parse_wp_mail_smtp_tokens' ), 2123, 6 );
Found in uncanny-automator-pro/src/integrations/contact-form7/tokens/cf7-anon-tokens.php:21:
add_filter( 'automator_maybe_parse_token', array( $this, 'parse_cf7_anon_token' ), 21, 6 );
Found in uncanny-automator-pro/src/integrations/memberpress/tokens/memberpress-pro-tokens.php:17:
add_filter( 'automator_maybe_parse_token', array( $this, 'parse_memberpress_tokens' ), 22, 6 );
Found in uncanny-automator-pro/src/integrations/memberpress/tokens/memberpress-pro-tokens.php:18:
add_filter( 'automator_maybe_parse_token', array( $this, 'parse_memberpress_ca_tokens' ), 20, 6 );
Found in uncanny-automator-pro/src/integrations/newsletter/tokens/newsletter-anon-tokens.php:33:
add_filter( 'automator_maybe_parse_token', array( $this, 'newletter_token' ), 20, 6 );
Found in uncanny-automator-pro/src/integrations/events-manager/tokens/em-tokens.php:23:
add_filter( 'automator_maybe_parse_token', array( $this, 'parse_em_trigger_tokens' ), 20, 6 );
Found in uncanny-automator-pro/src/core/webhook/webhook-common-options.php:20:
add_filter( 'automator_maybe_parse_token', array( __CLASS__, 'parse_webhook_tokens' ), 200, 6 );
Found in uncanny-automator-pro/src/integrations/wishlist-member/tokens/wm-pro-tokens.php:25:
add_filter( 'automator_maybe_parse_token', array( $this, 'parse_wm_token' ), 20, 6 );
Found in uncanny-automator-pro/src/integrations/tutorlms/tokens/tutorlms-pro-tokens.php:16:
add_filter( 'automator_maybe_parse_token', array( $this, 'tutorlms_tokens' ), 21, 6 );
Found in uncanny-automator-pro/src/integrations/ninja-forms/tokens/nf-anon-tokens.php:23:
add_filter( 'automator_maybe_parse_token', [ $this, 'nf_token' ], 20, 6 );