WC_VIEWPRODUCT::define_trigger()
Source
File: src/integrations/woocommerce/triggers/wc-viewproduct.php
public function define_trigger() { $trigger = array( 'author' => Automator()->get_author_name(), 'support_link' => Automator()->get_author_support_link( $this->trigger_code, 'integration/woocommerce/' ), 'integration' => self::$integration, 'code' => $this->trigger_code, /* translators: Logged-in trigger - WooCommerce */ 'sentence' => sprintf( esc_attr__( 'A user views {{a product:%1$s}} {{a number of:%2$s}} time(s)', 'uncanny-automator' ), $this->trigger_meta, 'NUMTIMES' ), /* translators: Logged-in trigger - WooCommerce */ 'select_option_name' => esc_attr__( 'A user views {{a product}}', 'uncanny-automator' ), 'action' => 'template_redirect', 'priority' => 90, 'accepted_args' => 1, 'validation_function' => array( $this, 'view_woo_product' ), // very last call in WP, we need to make sure they viewed the page and didn't skip before is was fully viewable 'options' => [ Automator()->helpers->recipe->woocommerce->options->all_wc_products(), Automator()->helpers->recipe->options->number_of_times(), ], ); Automator()->register->trigger( $trigger ); return; }
Expand full source code Collapse full source code View on Github