You are here

public function DisqusEnabledNodeTypes::count in Disqus 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/DisqusEnabledNodeTypes.php, line 52

Class

DisqusEnabledNodeTypes
Disqus enabled content types migration source.

Namespace

Drupal\disqus\Plugin\migrate\source

Code

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