You are here

public function Minisite::getCacheTags in Mini site 8

Get cache tags for this site.

Return value

string[] Array of cache tags.

Overrides MinisiteInterface::getCacheTags

File

src/Minisite.php, line 352

Class

Minisite
Class Minisite.

Namespace

Drupal\minisite

Code

public function getCacheTags() {

  // Currently using only archive file's cache tags.
  return $this->archiveFile
    ->getCacheTags();
}