Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. TermSelection.php

function TermSelection::countReferenceableEntities

Overrides DefaultSelection::countReferenceableEntities

File

core/modules/taxonomy/src/Plugin/EntityReferenceSelection/TermSelection.php, line 86

Class

TermSelection
Provides specific access control for the taxonomy_term entity type.

Namespace

Drupal\taxonomy\Plugin\EntityReferenceSelection

Code

public function countReferenceableEntities($match = NULL, $match_operator = 'CONTAINS') {
    if ($match) {
        return parent::countReferenceableEntities($match, $match_operator);
    }
    $total = 0;
    $referenceable_entities = $this->getReferenceableEntities($match, $match_operator, 0);
    foreach ($referenceable_entities as $entities) {
        $total += count($entities);
    }
    return $total;
}

API Navigation

  • Drupal Core 11.1.x
  • Topics
  • Classes
  • Functions
  • Constants
  • Globals
  • Files
  • Namespaces
  • Deprecated
  • Services
RSS feed
Powered by Drupal