BP_ADDTOGROUP
Class BP_ADDTOGROUP
Source Source
File: src/integrations/buddypress/actions/bp-addtogroup.php
class BP_ADDTOGROUP { /** * Integration code * @var string */ public static $integration = 'BP'; private $action_code; private $action_meta; /** * Set up Automator action constructor. */ public function __construct() { $this->action_code = 'BPADDTOGROUP'; $this->action_meta = 'BPGROUPS'; $this->define_action(); } /** * Define and register the action by pushing it into the Automator object */ public function define_action() { $bp_group_args = array( 'uo_include_any' => false, 'status' => array( 'public', 'hidden', 'private' ), ); $action = array( 'author' => Automator()->get_author_name(), 'support_link' => Automator()->get_author_support_link( $this->action_code, 'integration/buddypress/' ), 'integration' => self::$integration, 'code' => $this->action_code, /* translators: Action - BuddyPress */ 'sentence' => sprintf( esc_attr__( 'Add the user to {{a group:%1$s}}', 'uncanny-automator' ), $this->action_meta ), /* translators: Action - BuddyPress */ 'select_option_name' => esc_attr__( 'Add the user to {{a group}}', 'uncanny-automator' ), 'priority' => 10, 'accepted_args' => 1, 'execution_function' => array( $this, 'add_to_bp_group' ), 'options' => [ Automator()->helpers->recipe->buddypress->options->all_buddypress_groups( null, 'BPGROUPS', $bp_group_args ), ], ); Automator()->register->action( $action ); } /** * Validation function when the action is hit * * @param $user_id * @param $action_data * @param $recipe_id */ public function add_to_bp_group( $user_id, $action_data, $recipe_id ) { $add_to_bp_gropu = $action_data['meta'][ $this->action_meta ]; groups_join_group( $add_to_bp_gropu, $user_id ); Automator()->complete_action( $user_id, $action_data, $recipe_id ); } }
Expand full source code Collapse full source code View on Github
Methods Methods
- __construct — Set up Automator action constructor.
- add_to_bp_group — Validation function when the action is hit
- define_action — Define and register the action by pushing it into the Automator object