You are here

public function MetatagViewsCacheWrapper::getRowCacheTags in Metatag 8

Returns the row cache tags.

Parameters

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

Return value

string[] The row cache tags.

Overrides CachePluginBase::getRowCacheTags

File

metatag_views/src/MetatagViewsCacheWrapper.php, line 172

Class

MetatagViewsCacheWrapper
This class wraps a Views cache plugin.

Namespace

Drupal\metatag_views

Code

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