MYCRED_AWARDRANK_A::define_action()

Define and register the action by pushing it into the Automator object


Source Source

File: src/integrations/mycred/actions/mycred-awardrank-a.php

	public function define_action() {

		$action = [
			'author'             => Automator()->get_author_name(),
			'support_link'       => Automator()->get_author_support_link( $this->action_code, 'integration/mycred/' ),
			'integration'        => self::$integration,
			'code'               => $this->action_code,
			/* translators: Action - myCred */
			'sentence'           => sprintf( esc_attr__( 'Award {{a rank:%1$s}} to the user', 'uncanny-automator' ), $this->action_meta ),
			/* translators: Action - myCred */
			'select_option_name' => esc_attr__( 'Award {{a rank}} to the user', 'uncanny-automator' ),
			'priority'           => 10,
			'accepted_args'      => 1,
			'execution_function' => [ $this, 'award_mycred_ranks' ],
			'options'            => array(),
			'options_group'      => [
				$this->action_meta => [
					/* translators: Noun */
					Automator()->helpers->recipe->mycred->options->list_mycred_rank_types(
						esc_attr__( 'Rank', 'uncanny-automator' ),
						$this->action_meta,
						[
							'token'        => false,
							'is_ajax'      => true,
							'target_field' => $this->action_meta,
						]
					),
				],
			],
		];
		Automator()->register->action( $action );
	}