You are here

public function ViewModeBase::count in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/node/src/Plugin/migrate/source/d6/ViewModeBase.php \Drupal\node\Plugin\migrate\source\d6\ViewModeBase::count()

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

core/modules/node/src/Plugin/migrate/source/d6/ViewModeBase.php, line 15

Class

ViewModeBase
A base class for migrations that require view mode info.

Namespace

Drupal\node\Plugin\migrate\source\d6

Code

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