BP_XProfile_Field::__isset( string $key )

Magic issetter.


Description Description


Parameters Parameters

$key

(Required) Property name.


Top ↑

Return Return

(bool)


Top ↑

Source Source

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

334
335
336
337
338
339
340
341
342
public function __isset( $key ) {
    switch ( $key ) {
        // Backward compatibility for when these were public methods.
        case 'allow_custom_visibility' :
        case 'default_visibility' :
            return true;
            break;
    }
}

Top ↑

Changelog Changelog

Changelog
Version Description
2.4.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

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