BB_NEWTOPIC::define_trigger()
Define and register the trigger by pushing it into the Automator object
Source Source
File: src/integrations/bbpress/triggers/bb-newtopic.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/bbpress/' ), 'integration' => self::$integration, 'code' => $this->trigger_code, /* translators: Logged-in trigger - bbPress */ 'sentence' => sprintf( esc_attr__( 'A user creates a topic in {{a forum:%1$s}} {{a number of:%2$s}} time(s)', 'uncanny-automator' ), $this->trigger_meta, 'NUMTIMES' ), /* translators: Logged-in trigger - bbPress */ 'select_option_name' => esc_attr__( 'A user creates a topic in {{a forum}}', 'uncanny-automator' ), 'action' => 'bbp_new_topic', 'priority' => 10, 'accepted_args' => 4, 'validation_function' => array( $this, 'bbp_new_topic' ), 'options' => [ Automator()->helpers->recipe->bbpress->options->list_bbpress_forums( null, $this->trigger_meta, true ), Automator()->helpers->recipe->options->number_of_times(), ], ); Automator()->register->trigger( $trigger ); return; }
Expand full source code Collapse full source code View on Github