You are here

interface FallbackPluginManagerInterface in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/lib/Drupal/Component/Plugin/FallbackPluginManagerInterface.php \Drupal\Component\Plugin\FallbackPluginManagerInterface

An interface implemented by plugin managers with fallback plugin behaviors.

Hierarchy

Expanded class hierarchy of FallbackPluginManagerInterface

All classes that implement FallbackPluginManagerInterface

5 files declare their use of FallbackPluginManagerInterface
BlockManager.php in core/lib/Drupal/Core/Block/BlockManager.php
Contains \Drupal\Core\Block\BlockManager.
FilterPluginManager.php in core/modules/filter/src/FilterPluginManager.php
Contains \Drupal\filter\FilterPluginManager.
SelectionPluginManager.php in core/lib/Drupal/Core/Entity/EntityReferenceSelection/SelectionPluginManager.php
Contains \Drupal\Core\Entity\EntityReferenceSelection\SelectionPluginManager.
StubFallbackPluginManager.php in core/tests/Drupal/Tests/Component/Plugin/StubFallbackPluginManager.php
Contains \Drupal\Tests\Component\Plugin\StubFallbackPluginManager.
ViewsHandlerManager.php in core/modules/views/src/Plugin/ViewsHandlerManager.php
Contains \Drupal\views\Plugin\ViewsHandlerManager.

File

core/lib/Drupal/Component/Plugin/FallbackPluginManagerInterface.php, line 13
Contains \Drupal\Component\Plugin\FallbackPluginManagerInterface.

Namespace

Drupal\Component\Plugin
View 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 = array());

}

Members

Namesort descending Modifiers Type Description Overrides
FallbackPluginManagerInterface::getFallbackPluginId public function Gets a fallback id for a missing plugin. 5