BP_XProfile_Field_Type::do_settings_section()
Check whether the current field type should have a settings (“options”) section on the Edit Field panel.
Description
Falls back on supports_options if no value is set by the field type.
Return
(bool)
Source
File: bp-xprofile/classes/class-bp-xprofile-field-type.php
public function do_settings_section() {
if ( null === $this->do_settings_section ) {
$this->do_settings_section = $this->supports_options;
}
return (bool) $this->do_settings_section;
}
Changelog
| Version | Description |
|---|---|
| BuddyPress 2.7.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.