protected static function StaticMenuLinkOverrides::encodeId in Drupal 10
Same name and namespace in other branches
- 8 core/lib/Drupal/Core/Menu/StaticMenuLinkOverrides.php \Drupal\Core\Menu\StaticMenuLinkOverrides::encodeId()
- 9 core/lib/Drupal/Core/Menu/StaticMenuLinkOverrides.php \Drupal\Core\Menu\StaticMenuLinkOverrides::encodeId()
Encodes the ID by replacing dots with double underscores.
This is done because config schema uses dots for its internal type hierarchy. Double underscores are converted to triple underscores to avoid accidental conflicts.
Parameters
string $id: The menu plugin ID.
Return value
string The menu plugin ID with double underscore instead of dots.
File
- core/
lib/ Drupal/ Core/ Menu/ StaticMenuLinkOverrides.php, line 176
Class
- StaticMenuLinkOverrides
- Defines an implementation of the menu link override using a config file.
Namespace
Drupal\Core\MenuCode
protected static function encodeId($id) {
return strtr($id, [
'.' => '__',
'__' => '___',
]);
}