interface 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
6 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 - SelectionPluginManager.php in core/
lib/ Drupal/ Core/ Entity/ EntityReferenceSelection/ SelectionPluginManager.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. |