'site_tools_share_links', '#links' => $links, '#attributes' => [ 'class' => ['site-tools-share-links'], ], '#attached' => [ 'library' => ['site_tools/share_links'], ], ]; } /** * {@inheritdoc} */ public function getCacheContexts(): array { // Cache varia por URL pois os links dependem do conteúdo atual. return array_merge(parent::getCacheContexts(), ['url.path']); } /** * {@inheritdoc} */ public function getCacheTags(): array { // Permite que módulos invalidem o cache quando necessário. return array_merge(parent::getCacheTags(), ['site_tools_share_links']); } }