GH_REMOVETAG::define_action()
Define and register the action by pushing it into the Automator object
Source Source
File: src/integrations/groundhogg/actions/gh-removetag.php
public function define_action() { $tags = new Tags; $tag_options = array(); foreach ( $tags->get_tags() as $tag ) { $tag_options[ $tag->tag_id ] = $tag->tag_name; } $option = [ 'option_code' => $this->action_meta, 'label' => esc_attr__( 'Tags', 'uncanny-automator' ), 'input_type' => 'select', 'required' => true, 'options' => $tag_options, ]; $action = array( 'author' => Automator()->get_author_name(), 'support_link' => Automator()->get_author_support_link( $this->action_code, 'integration/groundhogg/' ), 'integration' => self::$integration, 'code' => $this->action_code, /* translators: Action - Groundhogg */ 'sentence' => sprintf( esc_attr__( 'Remove {{a tag:%1$s}} from the user', 'uncanny-automator' ), $this->action_meta ), /* translators: Action - Groundhogg */ 'select_option_name' => esc_attr__( 'Remove {{a tag}} from the user', 'uncanny-automator' ), 'priority' => 10, 'accepted_args' => 1, 'execution_function' => array( $this, 'remove_tag_to_user' ), 'options' => [ $option, ], ); Automator()->register->action( $action ); }
Expand full source code Collapse full source code View on Github