BP_Core_BP_Nav_BackCompat::offsetExists( mixed $offset )

Check whether nav array has a value at the specified offset.

Description

Parameters

$offset

(Required) Array offset.

Return

(bool)

Source

File: bp-core/classes/class-bp-core-bp-nav-backcompat.php

122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
public function offsetExists( $offset ) {
    _doing_it_wrong(
        'bp_nav',
        __( 'The bp_nav and bp_options_nav globals should not be used directly and are deprecated. Please use the BuddyPress nav functions instead.', 'buddyboss' ),
        '2.6.0'
    );
 
    if ( isset( $this->backcompat_nav[ $offset ] ) ) {
        return true;
    }
 
    $nav = $this->get_nav( $offset );
    if ( $nav && isset( $nav[ $offset ] ) ) {
        return true;
    }
 
    return false;
}

Changelog

Changelog
Version Description
BuddyPress 2.6.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.