AUTONAMI_USER_TAG_ADDED
Class AUTONAMI_USER_TAG_ADDED
Source Source
File: src/integrations/autonami/triggers/autonami-user-tag-added.php
class AUTONAMI_USER_TAG_ADDED { use Recipe\Triggers; /** * Set up Automator trigger constructor. */ public function __construct() { $this->helpers = new Autonami_Helpers(); $this->setup_trigger(); $this->register_trigger(); } /** * Define and register the trigger by pushing it into the Automator object */ public function setup_trigger() { $this->set_integration( 'AUTONAMI' ); $this->set_trigger_code( 'USER_TAG_ADDED' ); $this->set_trigger_meta( 'TAG' ); $this->set_is_login_required( false ); $this->set_support_link( $this->helpers->support_link( $this->trigger_code ) ); /* Translators: List name */ $this->set_sentence( sprintf( '{{A tag:%1$s}} is added to a user', $this->get_trigger_meta() ) ); $this->set_readable_sentence( '{{A tag}} is added to a user' ); $this->add_action( 'automator_bwfan_tag_added_to_contact' ); $this->set_action_args_count( 2 ); $this->set_options_callback( array( $this, 'load_options' ) ); } /** * Method load_options * * @return void */ public function load_options() { $options[] = $this->helpers->get_tag_dropdown(); return array( 'options' => $options ); } /** * Validation function when the trigger action is hit * * @param $data */ public function validate_trigger( ...$args ) { try { $contact = $this->helpers->extract_contact_from_args( $args ); $user_id = $this->helpers->get_wp_id( $contact ); $this->set_user_id( $user_id ); } catch ( \Exception $e ) { return false; } return true; } /** * Method prepare_to_run * * @param $data */ public function prepare_to_run( $data ) { $this->set_conditional_trigger( true ); } /** * Check list ID against the trigger meta * * @param $args */ public function trigger_conditions( $args ) { $tag_id = $this->helpers->extract_tag_id_from_args( $args ); $this->do_find_any( true ); // Support "Any tag" option // Find the tag in trigger meta $this->do_find_this( $this->get_trigger_meta() ); $this->do_find_in( $tag_id ); } }
Expand full source code Collapse full source code View on Github
Methods Methods
- __construct — Set up Automator trigger constructor.
- load_options — Method load_options
- prepare_to_run — Method prepare_to_run
- setup_trigger — Define and register the trigger by pushing it into the Automator object
- trigger_conditions — Check list ID against the trigger meta
- validate_trigger — Validation function when the trigger action is hit