BP_Notifications_Notification::__construct( int $id )

Constructor method.


Description Description


Parameters Parameters

$id

(Optional) Provide an ID to access an existing notification item.


Top ↑

Source Source

File: bp-notifications/classes/class-bp-notifications-notification.php

	public function __construct( $id = 0 ) {
		if ( ! empty( $id ) ) {
			$this->id = (int) $id;
			$this->populate();
		}
	}

Top ↑

Changelog Changelog

Changelog
Version Description
1.9.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

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