WP_LOGIN
Class WP_LOGIN
Source Source
File: src/integrations/wp/triggers/wp-login.php
class WP_LOGIN { /** * Integration code * @var string */ public static $integration = 'WP'; private $trigger_code; private $trigger_meta; /** * Set up Automator trigger constructor. */ public function __construct() { $this->trigger_code = 'LOGIN'; $this->trigger_meta = 'WPLOGIN'; $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/wordpress-core/' ), 'integration' => self::$integration, 'code' => $this->trigger_code, /* translators: Logged-in trigger - WordPress */ 'sentence' => sprintf( esc_attr__( 'A user logs in to the site {{a number of:%1$s}} time(s)', 'uncanny-automator' ), 'NUMTIMES' ), /* translators: Logged-in trigger - WordPress */ 'select_option_name' => esc_attr__( 'A user logs in to the site', 'uncanny-automator' ), 'action' => 'wp_login', 'priority' => 99, 'accepted_args' => 2, 'validation_function' => array( $this, 'wp_login' ), // 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->options->number_of_times(), ], ); Automator()->register->trigger( $trigger ); return; } /** * Validation function when the trigger action is hit * * @param $user_login * @param $user */ public function wp_login( $user_login, $user ) { $user_id = $user->ID; $args = [ 'code' => $this->trigger_code, 'meta' => $this->trigger_meta, 'user_id' => $user_id, 'ignore_post_id' => true, 'is_signed_in' => true, ]; Automator()->maybe_add_trigger_entry( $args ); } }
Expand full source code Collapse full source code View on Github
Methods Methods
- __construct — Set up Automator trigger constructor.
- define_trigger — Define and register the trigger by pushing it into the Automator object
- load_options — load_options
- wp_login — Validation function when the trigger action is hit