This function’s access is marked private. This means it is not intended for use by plugin or theme developers, only in other core functions. It is listed here for completeness.
BP_XProfile_Field::type_metabox()
Output the metabox for setting what type of field this is.
Description
Return
(void) If default field.
Source
File: bp-xprofile/classes/class-bp-xprofile-field.php
1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 | private function type_metabox() { // Default field cannot change type. if ( true === $this ->is_default_field() ) { return ; } ?> <div class = "postbox" > <h2><label for = "fieldtype" ><?php esc_html_e( 'Type' , 'buddyboss' ); ?></label></h2> <div class = "inside" aria-live= "polite" aria-atomic= "true" aria-relevant= "all" > <select name= "fieldtype" id= "fieldtype" onchange= "show_options(this.value)" > <?php bp_xprofile_admin_form_field_types( $this ->type ); ?> </select> <?php // Deprecated filter, don't use. Go look at {@link BP_XProfile_Field_Type::admin_new_field_html()}. do_action( 'xprofile_field_additional_options' , $this ); $this ->render_admin_form_children(); ?> </div> </div> <?php } |
Changelog
Version | Description |
---|---|
BuddyPress 2.3.0 | Introduced. |
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.