You are here

public function MongodbCommentStatistics::read in MongoDB 8

Read comment statistics records for an array of entities.

Parameters

\Drupal\Core\Entity\EntityInterface[] $entities: Array of entities on which commenting is enabled, keyed by id

string $entity_type: The entity type of the passed entities.

bool $accurate: (optional) Indicates if results must be completely up to date. If set to FALSE, a replica database will used if available. Defaults to TRUE.

Return value

object[] Array of statistics records.

Overrides CommentStatisticsInterface::read

File

mongodb_comment/src/MongodbCommentStatistics.php, line 72
Contains \Drupal\comment\CommentStatistics.

Class

MongodbCommentStatistics

Namespace

Drupal\mongodb_comment

Code

public function read($entities, $entity_type, $accurate = TRUE) {
  return;
  $options = $accurate ? array() : array(
    'target' => 'replica',
  );
  $stats = $this->database
    ->select('comment_entity_statistics', 'ces', $options)
    ->fields('ces')
    ->condition('ces.entity_id', array_keys($entities), 'IN')
    ->condition('ces.entity_type', $entity_type)
    ->execute();
  $statistics_records = array();
  while ($entry = $stats
    ->fetchObject()) {
    $statistics_records[] = $entry;
  }
  return $statistics_records;
}