BP_XProfile_Field_Type_Radiobutton

Radio button xprofile field type.

Description

Source

File: bp-xprofile/classes/class-bp-xprofile-field-type-radiobutton.php

17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
class BP_XProfile_Field_Type_Radiobutton extends BP_XProfile_Field_Type {
 
    /**
     * Constructor for the radio button field type.
     *
     * @since BuddyPress 2.0.0
     */
    public function __construct() {
        parent::__construct();
 
        $this->category = __( 'Multi Fields', 'buddyboss' );
        $this->name     = __( 'Radio Buttons', 'buddyboss' );
 
        $this->supports_options = true;
 
        $this->set_format( '/^.+$/', 'replace' );
 
        /**
         * Fires inside __construct() method for BP_XProfile_Field_Type_Radiobutton class.
         *
         * @since BuddyPress 2.0.0
         *
         * @param BP_XProfile_Field_Type_Radiobutton $this Current instance of
         *                                                 the field type radio button.
         */
        do_action( 'bp_xprofile_field_type_radiobutton', $this );
    }
 
    /**
     * Output the edit field HTML for this field type.
     *
     * Must be used inside the {@link bp_profile_fields()} template loop.
     *
     * @since BuddyPress 2.0.0
     *
     * @param array $raw_properties Optional key/value array of
     *                              {@link http://dev.w3.org/html5/markup/input.radio.html permitted attributes}
     *                              that you want to add.
     */
    public function edit_field_html( array $raw_properties = array() ) {
 
        // User_id is a special optional parameter that we pass to
        // {@link bp_the_profile_field_options()}.
        if ( isset( $raw_properties['user_id'] ) ) {
            $user_id = (int) $raw_properties['user_id'];
            unset( $raw_properties['user_id'] );
        } else {
            $user_id = bp_displayed_user_id();
        } ?>
 
            <legend>
                <?php bp_the_profile_field_name(); ?>
                <?php if ( bp_is_register_page() ) : ?>
                    <?php bp_the_profile_field_optional_label(); ?>
                <?php else: ?>
                    <?php bp_the_profile_field_required_label(); ?>
                <?php endif; ?>
            </legend>
 
            <?php if ( bp_get_the_profile_field_description() ) : ?>
                <p class="description" tabindex="0"><?php bp_the_profile_field_description(); ?></p>
            <?php endif; ?>
 
            <?php
 
            /** This action is documented in bp-xprofile/bp-xprofile-classes */
            do_action( bp_get_the_profile_field_errors_action() ); ?>
 
            <?php bp_the_profile_field_options( array( 'user_id' => $user_id ) );
 
            if ( ! bp_get_the_profile_field_is_required() ) : ?>
 
                <a class="clear-value" href="javascript:clear( '<?php echo esc_js( bp_get_the_profile_field_input_name() ); ?>' );">
                    <?php esc_html_e( 'Clear', 'buddyboss' ); ?>
                </a>
 
            <?php endif; ?>
 
        <?php
    }
 
    /**
     * Output the edit field options HTML for this field type.
     *
     * BuddyPress considers a field's "options" to be, for example, the items in a selectbox.
     * These are stored separately in the database, and their templating is handled separately.
     *
     * This templating is separate from {@link BP_XProfile_Field_Type::edit_field_html()} because
     * it's also used in the wp-admin screens when creating new fields, and for backwards compatibility.
     *
     * Must be used inside the {@link bp_profile_fields()} template loop.
     *
     * @since BuddyPress 2.0.0
     *
     * @param array $args Optional. The arguments passed to {@link bp_the_profile_field_options()}.
     */
    public function edit_field_options_html( array $args = array() ) {
        $option_value = BP_XProfile_ProfileData::get_value_byid( $this->field_obj->id, $args['user_id'] );
        $options      = $this->field_obj->get_children();
 
        $html = '';
 
        for ( $k = 0, $count = count( $options ); $k < $count; ++$k ) {
 
            // Check for updated posted values, but errors preventing them from
            // being saved first time.
            if ( isset( $_POST['field_' . $this->field_obj->id] ) && $option_value != $_POST['field_' . $this->field_obj->id] ) {
                if ( ! empty( $_POST['field_' . $this->field_obj->id] ) ) {
                    $option_value = sanitize_text_field( $_POST['field_' . $this->field_obj->id] );
                }
            }
 
            // Run the allowed option name through the before_save filter, so
            // we'll be sure to get a match.
            $allowed_options = xprofile_sanitize_data_value_before_save( $options[$k]->name, false, false );
            $selected        = '';
 
            if ( $option_value === $allowed_options || ( empty( $option_value ) && ! empty( $options[$k]->is_default_option ) ) ) {
                $selected = ' checked="checked"';
            }
 
            $new_html = sprintf( '<label for="%3$s" class="option-label"><input %1$s type="radio" name="%2$s" id="%3$s" value="%4$s">%5$s</label>',
                $selected,
                esc_attr( bp_get_the_profile_field_input_name() ),
                esc_attr( "option_{$options[$k]->id}" ),
                esc_attr( stripslashes( $options[$k]->name ) ),
                esc_html( stripslashes( $options[$k]->name ) )
            );
 
            /**
             * Filters the HTML output for an individual field options radio button.
             *
             * @since BuddyPress 1.1.0
             *
             * @param string $new_html Label and radio input field.
             * @param object $value    Current option being rendered for.
             * @param int    $id       ID of the field object being rendered.
             * @param string $selected Current selected value.
             * @param string $k        Current index in the foreach loop.
             */
            $html .= apply_filters( 'bp_get_the_profile_field_options_radio', $new_html, $options[$k], $this->field_obj->id, $selected, $k );
        }
 
        printf( '<div id="%1$s" class="input-options radio-button-options">%2$s</div>',
            esc_attr( 'field_' . $this->field_obj->id ),
            $html
        );
    }
 
    /**
     * Output HTML for this field type on the wp-admin Profile Fields screen.
     *
     * Must be used inside the {@link bp_profile_fields()} template loop.
     *
     * @since BuddyPress 2.0.0
     *
     * @param array $raw_properties Optional key/value array of permitted attributes that you want to add.
     */
    public function admin_field_html( array $raw_properties = array() ) {
        bp_the_profile_field_options();
 
        if ( bp_get_the_profile_field_is_required() ) {
            return;
        } ?>
 
        <a class="clear-value" href="javascript:clear( '<?php echo esc_js( bp_get_the_profile_field_input_name() ); ?>' );">
            <?php esc_html_e( 'Clear', 'buddyboss' ); ?>
        </a>
 
        <?php
    }
 
    /**
     * Output HTML for this field type's children options on the wp-admin Profile Fields "Add Field" and "Edit Field" screens.
     *
     * Must be used inside the {@link bp_profile_fields()} template loop.
     *
     * @since BuddyPress 2.0.0
     *
     * @param BP_XProfile_Field $current_field The current profile field on the add/edit screen.
     * @param string            $control_type  Optional. HTML input type used to render the current
     *                                         field's child options.
     */
    public function admin_new_field_html( BP_XProfile_Field $current_field, $control_type = '' ) {
        parent::admin_new_field_html( $current_field, 'radio' );
    }
}

Changelog

Changelog
Version Description
BuddyPress 2.0.0 Introduced.

Methods

  • __construct — Constructor for the radio button field type.
  • admin_field_html — Output HTML for this field type on the wp-admin Profile Fields screen.
  • admin_new_field_html — Output HTML for this field type's children options on the wp-admin Profile Fields "Add Field" and "Edit Field" screens.
  • edit_field_html — Output the edit field HTML for this field type.
  • edit_field_options_html — Output the edit field options HTML for this field type.

Questions?

We're always happy to help with code or other questions you might have! Search our developer docs, contact support, or connect with our sales team.