You are here

public function NodewordsFieldInstance::count in Metatag 8

Gets the source count.

Return a count of available source records, from the cache if appropriate. Returns -1 if the source is not countable.

Parameters

bool $refresh: (optional) Whether or not to refresh the count. Defaults to FALSE. Not all implementations support the reset flag. In such instances this parameter is ignored and the result of calling the method will always be up to date.

Return value

int The count.

Overrides SqlBase::count

File

src/Plugin/migrate/source/d6/NodewordsFieldInstance.php, line 117

Class

NodewordsFieldInstance
Drupal 6 Nodewords field instances.

Namespace

Drupal\metatag\Plugin\migrate\source\d6

Code

public function count($refresh = FALSE) {
  return $this
    ->initializeIterator()
    ->count();
}