Carbon_Fields\Container\User_Meta_Container::attach PHP Method

attach() public method

Add the container to the user
public attach ( )
    public function attach()
    {
        add_action('show_user_profile', array($this, 'render'), 10, 1);
        add_action('edit_user_profile', array($this, 'render'), 10, 1);
        add_action('user_new_form', array($this, 'render'), 10, 1);
    }