protected ElementInfoManager::getCid($theme_name)
Returns the CID used to cache the element info.
Parameters
string $theme_name: The theme name.
Return value
string
File
- core/lib/Drupal/Core/Render/ElementInfoManager.php, line 161
Class
- ElementInfoManager
- Provides a plugin manager for element plugins.
Namespace
Drupal\Core\Render
Code
1 2 3 | protected function getCid( $theme_name ) { return 'element_info_build:' . $theme_name ; } |
Please login to continue.