protected MenuLinkManager::getFactory()
Gets the plugin factory.
Return value
\Drupal\Component\Plugin\Factory\FactoryInterface
File
- core/lib/Drupal/Core/Menu/MenuLinkManager.php, line 154
Class
- MenuLinkManager
- Manages discovery, instantiation, and tree building of menu link plugins.
Namespace
Drupal\Core\Menu
Code
1 2 3 4 5 6 | protected function getFactory() { if (!isset( $this ->factory)) { $this ->factory = new ContainerFactory( $this ); } return $this ->factory; } |
Please login to continue.