BP_Document::__construct( int|bool $id = false )

Constructor method.

Description

Parameters

$id

(Optional) The ID of a specific activity item.

Default value: false

Source

File: bp-document/classes/class-bp-document.php

149
150
151
152
153
154
155
156
157
function __construct( $id = false ) {
    // Instantiate errors object.
    $this->errors = new WP_Error();
 
    if ( ! empty( $id ) ) {
        $this->id = (int) $id;
        $this->populate();
    }
}

Changelog

Changelog
Version Description
BuddyBoss 1.4.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.