WPF_USERGROUP

Class WPF_USERGROUP

Contents

  • Methods

  • Source Source

    File: src/integrations/wpforo/actions/wpf-usergroup.php

    class WPF_USERGROUP {
    
    	/**
    	 * Integration code
    	 * @var string
    	 */
    	public static $integration = 'WPFORO';
    
    	private $action_code;
    	private $action_meta;
    
    	/**
    	 * Set up Automator action constructor.
    	 */
    	public function __construct() {
    		$this->action_code = 'ENRLFOROGROUP';
    		$this->action_meta = 'FOROGROUP';
    		$this->define_action();
    	}
    
    	/**
    	 * Define and register the action by pushing it into the Automator object
    	 */
    	public function define_action() {
    
    
    
    		$usergroups = WPF()->usergroup->get_usergroups();
    
    		$group_options = array();
    		foreach ( $usergroups as $key => $group ) {
    			$group_options[ $group['groupid'] ] = $group['name'];
    		}
    
    		$option = [
    			'option_code' => 'FOROGROUP',
    			'label'       => esc_attr__( 'User groups', 'uncanny-automator' ),
    			'input_type'  => 'select',
    			'required'    => true,
    			'options'     => $group_options,
    		];
    
    		$action = array(
    			'author'             => Automator()->get_author_name(),
    			'support_link'       => Automator()->get_author_support_link( $this->action_code, 'integration/wpforo/' ),
    			'integration'        => self::$integration,
    			'code'               => $this->action_code,
    			/* translators: Action - wpForo */
    			'sentence'           => sprintf( esc_attr__( 'Add the user to {{a group:%1$s}}', 'uncanny-automator' ), $this->action_meta ),
    			/* translators: Action - wpForo */
    			'select_option_name' => esc_attr__( 'Add the user to {{a group}}', 'uncanny-automator' ),
    			'priority'           => 10,
    			'accepted_args'      => 1,
    			'execution_function' => array( $this, 'enrol_in_to_group' ),
    			'options'            => [
    				$option,
    			],
    		);
    
    		Automator()->register->action( $action );
    	}
    
    	/**
    	 * @param $user_id
    	 * @param $action_data
    	 * @param $recipe_id
    	 */
    	public function enrol_in_to_group( $user_id, $action_data, $recipe_id ) {
    
    
    		$group_id = $action_data['meta'][ $this->action_meta ];
    
    		if ( wpforo_feature( 'role-synch' ) ) {
    			WPF()->member->set_usergroup( $user_id, $group_id );
    		} else {
    			WPF()->usergroup->set_users_groupid( array( $group_id => [ $user_id ] ) );
    		}
    
    		Automator()->complete_action( $user_id, $action_data, $recipe_id );
    	}
    }
    

    Methods Methods