BP_Nouveau_Customizer_Group_Nav::__isset( string $key )
Checks whether a property is set.
Description Description
Overrides BP_Core_Nav::__isset() to avoid looking into its nav property.
Parameters Parameters
- $key
-
(Required) The property.
Return Return
(bool) True if the property is set, false otherwise.
Source Source
File: bp-templates/bp-nouveau/includes/groups/classes.php
public function __isset( $key ) {
return isset( $this->{$key} );
}
Changelog Changelog
| Version | Description |
|---|---|
| 3.0.0 | Introduced. |