W3cubDocs

/Drupal 8

public function FieldableEntityStorageInterface::countFieldData

public FieldableEntityStorageInterface::countFieldData($storage_definition, $as_bool = FALSE)

Determines the number of entities with values for a given field.

Parameters

\Drupal\Core\Field\FieldStorageDefinitionInterface $storage_definition: The field for which to count data records.

bool $as_bool: (Optional) Optimises the query for checking whether there are any records or not. Defaults to FALSE.

Return value

bool|int The number of entities. If $as_bool parameter is TRUE then the value will either be TRUE or FALSE.

See also

\Drupal\Core\Entity\FieldableEntityStorageInterface::purgeFieldData()

File

core/lib/Drupal/Core/Entity/FieldableEntityStorageInterface.php, line 25

Class

FieldableEntityStorageInterface
A storage that supports entity types with field definitions.

Namespace

Drupal\Core\Entity

Code

public function countFieldData($storage_definition, $as_bool = FALSE);

© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/core!lib!Drupal!Core!Entity!FieldableEntityStorageInterface.php/function/FieldableEntityStorageInterface::countFieldData/8.1.x