MenuLinkManager::getFactory

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;
}
doc_Drupal
2016-10-29 09:27:06
Comments
Leave a Comment

Please login to continue.