Warning: Array to string conversion in /home/customer/www/docs.automatorplugin.com/public_html/wp-content/themes/wporg-developer/inc/template-tags.php on line 825
Warning: foreach() argument must be of type array|object, string given in /home/customer/www/docs.automatorplugin.com/public_html/wp-content/themes/wporg-developer/inc/template-tags.php on line 830
Warning: Array to string conversion in /home/customer/www/docs.automatorplugin.com/public_html/wp-content/themes/wporg-developer/inc/template-tags.php on line 825
Warning: foreach() argument must be of type array|object, string given in /home/customer/www/docs.automatorplugin.com/public_html/wp-content/themes/wporg-developer/inc/template-tags.php on line 830
Warning: Array to string conversion in /home/customer/www/docs.automatorplugin.com/public_html/wp-content/themes/wporg-developer/inc/template-tags.php on line 825
Warning: foreach() argument must be of type array|object, string given in /home/customer/www/docs.automatorplugin.com/public_html/wp-content/themes/wporg-developer/inc/template-tags.php on line 830
UC_CODESSUFFIX::user_redeemed_code_suffix( $user_id, $coupon_id, $res )
Contents
Warning: Array to string conversion in /home/customer/www/docs.automatorplugin.com/public_html/wp-content/themes/wporg-developer/inc/template-tags.php on line 825
Warning: foreach() argument must be of type array|object, string given in /home/customer/www/docs.automatorplugin.com/public_html/wp-content/themes/wporg-developer/inc/template-tags.php on line 830
Warning: Array to string conversion in /home/customer/www/docs.automatorplugin.com/public_html/wp-content/themes/wporg-developer/inc/template-tags.php on line 825
Warning: foreach() argument must be of type array|object, string given in /home/customer/www/docs.automatorplugin.com/public_html/wp-content/themes/wporg-developer/inc/template-tags.php on line 830
Warning: Array to string conversion in /home/customer/www/docs.automatorplugin.com/public_html/wp-content/themes/wporg-developer/inc/template-tags.php on line 825
Warning: foreach() argument must be of type array|object, string given in /home/customer/www/docs.automatorplugin.com/public_html/wp-content/themes/wporg-developer/inc/template-tags.php on line 830
Parameters Parameters
- $user_id
(Required)
- $coupon_id
(Required)
- $res
(Required)
Source Source
File: src/integrations/uncanny-codes/triggers/uc-codessuffix.php
public function user_redeemed_code_suffix( $user_id, $coupon_id, $result ) { global $wpdb; if ( ! $user_id ) { $user_id = get_current_user_id(); } if ( empty ( $user_id ) ) { return; } $recipes = Automator()->get->recipes_from_trigger_code( $this->trigger_code ); $required_suffix = Automator()->get->meta_from_recipes( $recipes, $this->trigger_meta . '_readable' ); $suffix = $wpdb->get_var( $wpdb->prepare( "SELECT g.suffix FROM `{$wpdb->prefix}uncanny_codes_groups` g LEFT JOIN `{$wpdb->prefix}uncanny_codes_codes` c ON g.ID = c.code_group WHERE c.ID = %d", $coupon_id ) ); foreach ( $recipes as $recipe_id => $recipe ) { foreach ( $recipe['triggers'] as $trigger ) { $trigger_id = $trigger['ID'];//return early for all products if ( isset( $required_suffix[ $recipe_id ] ) && isset( $required_suffix[ $recipe_id ][ $trigger_id ] ) ) { if ( (string) $suffix === (string) $required_suffix[ $recipe_id ][ $trigger_id ] ) { if ( ! Automator()->is_recipe_completed( $recipe_id, $user_id ) ) { $pass_args = [ 'code' => $this->trigger_code, 'meta' => $this->trigger_meta, 'ignore_post_id' => true, 'user_id' => $user_id, 'recipe_to_match' => $recipe_id, 'trigger_to_match' => $trigger_id, ]; $args = Automator()->maybe_add_trigger_entry( $pass_args, false ); if ( isset( $args ) ) { foreach ( $args as $result ) { if ( true === $result['result'] ) { $trigger_meta = [ 'user_id' => $user_id, 'trigger_id' => $result['args']['trigger_id'], 'trigger_log_id' => $result['args']['get_trigger_id'], 'run_number' => $result['args']['run_number'], ]; $trigger_meta['meta_key'] = $result['args']['trigger_id'] . ':' . $this->trigger_code . ':' . $this->trigger_meta; $trigger_meta['meta_value'] = maybe_serialize( $suffix ); Automator()->insert_trigger_meta( $trigger_meta ); Automator()->maybe_trigger_complete( $result['args'] ); } } } } } } } } return; }
Expand full source code Collapse full source code View on Github