protected function DbLogTest::getTypeCount

Gets the count of database log entries by database log event type.

Parameters

array $types: The type information to compare against.

Return value

array The count of each type keyed by the key of the $types array.

1 call to DbLogTest::getTypeCount()
DbLogTest::testFilter in drupal/core/modules/dblog/lib/Drupal/dblog/Tests/DbLogTest.php
Tests the database log filter functionality at admin/reports/dblog.

File

drupal/core/modules/dblog/lib/Drupal/dblog/Tests/DbLogTest.php, line 556
Contains \Drupal\dblog\Tests\DbLogTest.

Class

DbLogTest
Tests logging messages to the database.

Namespace

Drupal\dblog\Tests

Code

protected function getTypeCount(array $types) {
  $entries = $this
    ->getLogEntries();
  $count = array_fill(0, count($types), 0);
  foreach ($entries as $entry) {
    foreach ($types as $key => $type) {
      if ($entry['type'] == $type['type'] && $entry['severity'] == $type['severity']) {
        $count[$key]++;
        break;
      }
    }
  }
  return $count;
}