protected MenuLinkManager::getDiscovery()
Gets the plugin discovery.
Return value
\Drupal\Component\Plugin\Discovery\DiscoveryInterface
File
- core/lib/Drupal/Core/Menu/MenuLinkManager.php, line 139
Class
- MenuLinkManager
- Manages discovery, instantiation, and tree building of menu link plugins.
Namespace
Drupal\Core\Menu
Code
1 2 3 4 5 6 7 8 9 | protected function getDiscovery() { if (!isset( $this ->discovery)) { $yaml_discovery = new YamlDiscovery( 'links.menu' , $this ->moduleHandler->getModuleDirectories()); $yaml_discovery ->addTranslatableProperty( 'title' , 'title_context' ); $yaml_discovery ->addTranslatableProperty( 'description' , 'description_context' ); $this ->discovery = new ContainerDerivativeDiscoveryDecorator( $yaml_discovery ); } return $this ->discovery; } |
Please login to continue.