You are here

public function PrivateMessageThreadInterface::getLastDeleteTimestamp in Private Message 8.2

Same name and namespace in other branches
  1. 8 src/Entity/PrivateMessageThreadInterface.php \Drupal\private_message\Entity\PrivateMessageThreadInterface::getLastDeleteTimestamp()

Get the last delete timestamp for the given user.

Parameters

\Drupal\Core\Session\AccountInterface $account: The user whose last delete time should be retrieved.

Return value

int A UNIX timestamp indicating the last time the user marked the thread as deleted.

1 method overrides PrivateMessageThreadInterface::getLastDeleteTimestamp()
PrivateMessageThread::getLastDeleteTimestamp in src/Entity/PrivateMessageThread.php
Get the last delete timestamp for the given user.

File

src/Entity/PrivateMessageThreadInterface.php, line 139

Class

PrivateMessageThreadInterface
Provides an interface defining a Private Message thread entity.

Namespace

Drupal\private_message\Entity

Code

public function getLastDeleteTimestamp(AccountInterface $account);