BO_AWARDRANK_A::define_action()
Define and register the action by pushing it into the Automator object
Source Source
File: src/integrations/badgeos/actions/bo-awardrank-a.php
public function define_action() { $action = [ 'author' => Automator()->get_author_name(), 'support_link' => Automator()->get_author_support_link( $this->action_code, 'integration/badgeos/' ), 'integration' => self::$integration, 'code' => $this->action_code, /* translators: Action - BadgeOS */ 'sentence' => sprintf( esc_attr__( 'Award {{a rank:%1$s}} to the user', 'uncanny-automator' ), $this->action_meta ), /* translators: Action - BadgeOS */ 'select_option_name' => esc_attr__( 'Award {{a rank}} to the user', 'uncanny-automator' ), 'priority' => 10, 'accepted_args' => 1, 'execution_function' => [ $this, 'award_points' ], 'options' => array(), 'options_group' => [ $this->action_meta => [ Automator()->helpers->recipe->badgeos->options->list_bo_rank_types( '', 'BORANKTYPES', [ 'token' => false, 'is_ajax' => true, 'target_field' => $this->action_meta, 'endpoint' => 'select_ranks_from_types_BOAWARDRANKS', ] ), Automator()->helpers->recipe->field->select_field_args( [ 'option_code' => $this->action_meta, 'options' => array(), /* translators: Noun */ 'label' => esc_attr__( 'Rank', 'uncanny-automator' ), 'required' => true, 'custom_value_description' => esc_attr__( 'Rank ID', 'uncanny-automator' ), ] ), ], ], ]; Automator()->register->action( $action ); }
Expand full source code Collapse full source code View on Github