MenuLinkManager::getInstance

public MenuLinkManager::getInstance(array $options)

Gets a preconfigured instance of a plugin.

Parameters

array $options: An array of options that can be used to determine a suitable plugin to instantiate and how to configure it.

Return value

object|false A fully configured plugin instance. The interface of the plugin instance will depends on the plugin type. If no instance can be retrieved, FALSE will be returned.

Overrides MapperInterface::getInstance

File

core/lib/Drupal/Core/Menu/MenuLinkManager.php, line 241

Class

MenuLinkManager
Manages discovery, instantiation, and tree building of menu link plugins.

Namespace

Drupal\Core\Menu

Code

public function getInstance(array $options) {
  if (isset($options['id'])) {
    return $this->createInstance($options['id']);
  }
}
doc_Drupal
2016-10-29 09:27:06
Comments
Leave a Comment

Please login to continue.