BP_XProfile_Field::get_allow_custom_visibility()

Get whether the field’s default visibility can be overridden by users.


Description Description

Lazy-loaded to reduce overhead.

Defaults to ‘allowed’.


Return Return

(string) 'disabled' or 'allowed'.


Top ↑

Source Source

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

	public function get_allow_custom_visibility() {
		if ( ! isset( $this->allow_custom_visibility ) ) {
			$allow_custom_visibility = bp_xprofile_get_meta( $this->id, 'field', 'allow_custom_visibility' );

			if ( 'disabled' === $allow_custom_visibility ) {
				$this->allow_custom_visibility = 'disabled';
			} else {
				$this->allow_custom_visibility = 'allowed';
			}
		}

		return $this->allow_custom_visibility;
	}

Top ↑

Changelog Changelog

Changelog
Version Description
4.4.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

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