CF7_SUBFORM::define_trigger()
Define and register the trigger by pushing it into the Automator object
Source Source
File: src/integrations/contact-form7/triggers/cf7-subform.php
public function define_trigger() { $trigger = array( 'author' => Automator()->get_author_name( $this->trigger_code ), 'support_link' => Automator()->get_author_support_link( $this->trigger_code, 'integration/contact-form-7/' ), 'integration' => self::$integration, 'code' => $this->trigger_code, /* translators: Logged-in trigger - Contact Form 7 */ 'sentence' => sprintf( esc_attr__( 'A user submits {{a form:%1$s}} {{a number of:%2$s}} time(s)', 'uncanny-automator' ), $this->trigger_meta, 'NUMTIMES' ), /* translators: Logged-in trigger - Contact Form 7 */ 'select_option_name' => esc_attr__( 'A user submits {{a form}}', 'uncanny-automator' ), 'action' => 'wpcf7_submit', 'priority' => 99, 'accepted_args' => 2, 'validation_function' => array( $this, 'wpcf7_submit' ), 'options' => [ Automator()->helpers->recipe->contact_form7->options->list_contact_form7_forms(), Automator()->helpers->recipe->options->number_of_times(), ], ); Automator()->register->trigger( $trigger ); }
Expand full source code Collapse full source code View on Github