function MenuLinkManager::getFactory
Gets the plugin factory.
Return value
\Drupal\Component\Plugin\Factory\FactoryInterface
File
- 
              core/lib/ Drupal/ Core/ Menu/ MenuLinkManager.php, line 152 
Class
- MenuLinkManager
- Manages discovery, instantiation, and tree building of menu link plugins.
Namespace
Drupal\Core\MenuCode
protected function getFactory() {
  if (!isset($this->factory)) {
    $this->factory = new ContainerFactory($this);
  }
  return $this->factory;
}Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.
