ZOOM_UNREGISTERUSER::define_action()
Define and register the action by pushing it into the Automator object
Source Source
File: src/integrations/zoom/actions/zoom-unregisteruser.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, 'knowledge-base/zoom/' ), 'is_pro' => false, //'is_deprecated' => true, 'integration' => self::$integration, 'code' => $this->action_code, 'sentence' => sprintf( __( 'Remove the user from {{a meeting:%1$s}}', 'uncanny-automator' ), $this->action_meta ), 'select_option_name' => __( 'Remove the user from {{a meeting}}', 'uncanny-automator' ), 'priority' => 10, 'accepted_args' => 1, 'execution_function' => array( $this, 'zoom_unregister_user' ), 'options' => array( Automator()->helpers->recipe->zoom->get_meetings( null, $this->action_meta ), ), ); Automator()->register->action( $action ); }
Expand full source code Collapse full source code View on Github