public function MapperInterface::getInstance in Zircon Profile 8.0
Same name and namespace in other branches
- 8 core/lib/Drupal/Component/Plugin/Mapper/MapperInterface.php \Drupal\Component\Plugin\Mapper\MapperInterface::getInstance()
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.
4 methods override MapperInterface::getInstance()
- EntityManager::getInstance in core/
lib/ Drupal/ Core/ Entity/ EntityManager.php - MenuLinkManager::getInstance in core/
lib/ Drupal/ Core/ Menu/ MenuLinkManager.php - Gets a preconfigured instance of a plugin.
- PluginManagerBase::getInstance in core/
lib/ Drupal/ Component/ Plugin/ PluginManagerBase.php - Gets a preconfigured instance of a plugin.
- TypedDataManagerInterface::getInstance in core/
lib/ Drupal/ Core/ TypedData/ TypedDataManagerInterface.php
File
- core/
lib/ Drupal/ Component/ Plugin/ Mapper/ MapperInterface.php, line 32 - Contains \Drupal\Component\Plugin\Mapper\MapperInterface.
Class
- MapperInterface
- Plugin mapper interface.
Namespace
Drupal\Component\Plugin\MapperCode
public function getInstance(array $options);