bp_xprofile_get_field_types()

Get details of all xprofile field types.


Description Description


Return Return

(array) Key/value pairs (field type => class name).


Top ↑

Source Source

File: bp-xprofile/bp-xprofile-functions.php

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
function bp_xprofile_get_field_types() {
    $fields = array(
        'checkbox'       => 'BP_XProfile_Field_Type_Checkbox',
        'datebox'        => 'BP_XProfile_Field_Type_Datebox',
        'multiselectbox' => 'BP_XProfile_Field_Type_Multiselectbox',
        'number'         => 'BP_XProfile_Field_Type_Number',
        'url'            => 'BP_XProfile_Field_Type_URL',
        'radio'          => 'BP_XProfile_Field_Type_Radiobutton',
        'selectbox'      => 'BP_XProfile_Field_Type_Selectbox',
        'textarea'       => 'BP_XProfile_Field_Type_Textarea',
        'textbox'        => 'BP_XProfile_Field_Type_Textbox',
        'telephone'      => 'BP_XProfile_Field_Type_Telephone',
    );
 
    /**
     * Filters the list of all xprofile field types.
     *
     * If you've added a custom field type in a plugin, register it with this filter.
     *
     * @since 2.0.0
     *
     * @param array $fields Array of field type/class name pairings.
     */
    return apply_filters( 'bp_xprofile_get_field_types', $fields );
}

Top ↑

Changelog Changelog

Changelog
Version Description
2.0.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.