You are here

public function PrivateMessageService::getThreadIds in Private Message 8.2

Retrieve the IDs of all threads in the system.

Return value

array An array of thread IDs for threads in the system.

Overrides PrivateMessageServiceInterface::getThreadIds

File

src/Service/PrivateMessageService.php, line 387

Class

PrivateMessageService
The Private Message service for the private message module.

Namespace

Drupal\private_message\Service

Code

public function getThreadIds() {
  return $this->mapper
    ->getThreadIds();
}