BDB_NEWTOPIC
Class BDB_NEWTOPIC
Source Source
File: src/integrations/buddyboss/triggers/bdb-newtopic.php
class BDB_NEWTOPIC { /** * Integration code * @var string */ public static $integration = 'BDB'; private $trigger_code; private $trigger_meta; /** * Set up Automator trigger constructor. */ public function __construct() { $this->trigger_code = 'BDBNEWTOPIC'; $this->trigger_meta = 'BDBFORUMSTOPIC'; $this->define_trigger(); } /** * Define and register the trigger by pushing it into the Automator object */ 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/buddyboss/' ), '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->buddyboss->options->list_buddyboss_forums( esc_attr__( 'Forum', 'uncanny-automator' ), $this->trigger_meta, [ 'uo_include_any' => true ] ), Automator()->helpers->recipe->options->number_of_times(), ], ); Automator()->register->trigger( $trigger ); return; } /** * Validation function when the trigger action is hit * * @param $topic_id * @param $forum_id * @param $anonymous_data * @param $topic_author */ public function bbp_new_topic( $topic_id, $forum_id, $anonymous_data, $topic_author ) { $user_id = get_current_user_id(); $args = [ 'code' => $this->trigger_code, 'meta' => $this->trigger_meta, 'post_id' => absint( $forum_id ), 'user_id' => $user_id, ]; $args = Automator()->maybe_add_trigger_entry( $args, false ); if ( $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'] = 'BDBTOPIC'; $trigger_meta['meta_value'] = $topic_id; Automator()->insert_trigger_meta( $trigger_meta ); Automator()->maybe_trigger_complete( $result['args'] ); } } } } }
Expand full source code Collapse full source code View on Github
Methods Methods
- __construct — Set up Automator trigger constructor.
- bbp_new_topic — Validation function when the trigger action is hit
- define_trigger — Define and register the trigger by pushing it into the Automator object
- load_options