BP_Notifications_Notification::__construct( int $id )
Constructor method.
Description Description
Parameters Parameters
- $id
-
(Optional) Provide an ID to access an existing notification item.
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(); } }
Changelog Changelog
Version | Description |
---|---|
1.9.0 | Introduced. |