You are here

protected function ElementInfoManager::getCid in Drupal 9

Same name and namespace in other branches
  1. 8 core/lib/Drupal/Core/Render/ElementInfoManager.php \Drupal\Core\Render\ElementInfoManager::getCid()
  2. 10 core/lib/Drupal/Core/Render/ElementInfoManager.php \Drupal\Core\Render\ElementInfoManager::getCid()

Returns the CID used to cache the element info.

Parameters

string $theme_name: The theme name.

Return value

string

1 call to ElementInfoManager::getCid()
ElementInfoManager::buildInfo in core/lib/Drupal/Core/Render/ElementInfoManager.php
Builds up all element information.

File

core/lib/Drupal/Core/Render/ElementInfoManager.php, line 162

Class

ElementInfoManager
Provides a plugin manager for element plugins.

Namespace

Drupal\Core\Render

Code

protected function getCid($theme_name) {
  return 'element_info_build:' . $theme_name;
}