interface FallbackPluginManagerInterface
Same name in other branches
- 9 core/lib/Drupal/Component/Plugin/FallbackPluginManagerInterface.php \Drupal\Component\Plugin\FallbackPluginManagerInterface
- 8.9.x core/lib/Drupal/Component/Plugin/FallbackPluginManagerInterface.php \Drupal\Component\Plugin\FallbackPluginManagerInterface
- 10 core/lib/Drupal/Component/Plugin/FallbackPluginManagerInterface.php \Drupal\Component\Plugin\FallbackPluginManagerInterface
An interface implemented by plugin managers with fallback plugin behaviors.
Hierarchy
- interface \Drupal\Component\Plugin\FallbackPluginManagerInterface
Expanded class hierarchy of FallbackPluginManagerInterface
All classes that implement FallbackPluginManagerInterface
8 files declare their use of FallbackPluginManagerInterface
- BlockManager.php in core/
lib/ Drupal/ Core/ Block/ BlockManager.php - FieldTypeCategoryManager.php in core/
lib/ Drupal/ Core/ Field/ FieldTypeCategoryManager.php - FilterPluginManager.php in core/
modules/ filter/ src/ FilterPluginManager.php - PluginExistsConstraintValidator.php in core/
lib/ Drupal/ Core/ Plugin/ Plugin/ Validation/ Constraint/ PluginExistsConstraintValidator.php - PluginExistsConstraintValidatorTest.php in core/
tests/ Drupal/ KernelTests/ Core/ Plugin/ PluginExistsConstraintValidatorTest.php
File
-
core/
lib/ Drupal/ Component/ Plugin/ FallbackPluginManagerInterface.php, line 8
Namespace
Drupal\Component\PluginView source
interface FallbackPluginManagerInterface {
/**
* Gets a fallback id for a missing plugin.
*
* @param string $plugin_id
* The ID of the missing requested plugin.
* @param array $configuration
* An array of configuration relevant to the plugin instance.
*
* @return string
* The id of an existing plugin to use when the plugin does not exist.
*/
public function getFallbackPluginId($plugin_id, array $configuration = []);
}
Members
Title Sort descending | Modifiers | Object type | Summary |
---|---|---|---|
FallbackPluginManagerInterface::getFallbackPluginId | public | function | Gets a fallback id for a missing plugin. |
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.