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
protected function getFactory() { if (!isset($this->factory)) { $this->factory = new ContainerFactory($this); } return $this->factory; }
Please login to continue.