You are here

public function SimplenewsRecipientHandlerBase::buildRecipientCountQuery in Simplenews 7.2

Implements SimplenewsRecipientHandlerInterface::buildRecipientCountQuery()

Overrides SimplenewsRecipientHandlerInterface::buildRecipientCountQuery

File

includes/simplenews.recipient_handlers.inc, line 90
Provide helpful functions and Interfaces for recipient handler plugins.

Class

SimplenewsRecipientHandlerBase
Base class for all Simplenews Recipient Handler classes.

Code

public function buildRecipientCountQuery() {
  return $this
    ->buildRecipientQuery()
    ->countQuery();
}