You are here

public function MetatagViewsCacheWrapper::getRowId in Metatag 8

Returns a unique identifier for the specified row.

Parameters

\Drupal\views\ResultRow $row: A result row.

Return value

string The row identifier.

Overrides CachePluginBase::getRowId

File

metatag_views/src/MetatagViewsCacheWrapper.php, line 186

Class

MetatagViewsCacheWrapper
This class wraps a Views cache plugin.

Namespace

Drupal\metatag_views

Code

public function getRowId(ResultRow $row) {
  return $this->plugin
    ->getRowId($row);
}