PEEPSO_FOLLOWAUSER::define_action()
Define and register the action by pushing it into the Automator object
Source Source
File: src/integrations/peepso/actions/peepso-followauser.php
public function define_action() { $action = array( 'author' => Automator()->get_author_name( $this->action_code ), 'support_link' => Automator()->get_author_support_link( $this->action_code, 'integration/peepso/' ), 'integration' => self::$integration, 'code' => $this->action_code, 'requires_user' => true, /* translators: Action - WordPress Core */ 'sentence' => sprintf( esc_attr__( 'Follow {{a user:%1$s}}', 'uncanny-automator' ), $this->action_meta ), /* translators: Action - WordPress Core */ 'select_option_name' => esc_attr__( 'Follow a user', 'uncanny-automator' ), 'priority' => 10, 'accepted_args' => 1, 'execution_function' => array( $this, 'follow_a_user' ), 'options_callback' => array( $this, 'load_options' ), ); Automator()->register->action( $action ); }
Expand full source code Collapse full source code View on Github