public function PrivateMessageThreadInterface::getLastDeleteTimestamp in Private Message 8
Same name and namespace in other branches
- 8.2 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 175
Class
- PrivateMessageThreadInterface
- Provides an interface defining a Private Message thread entity.
Namespace
Drupal\private_message\EntityCode
public function getLastDeleteTimestamp(AccountInterface $account);