You are here

interface FallbackPluginManagerInterface in Service Container 7.2

Same name and namespace in other branches
  1. 7 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

2 files declare their use of FallbackPluginManagerInterface
DefaultPluginManagerTest.php in tests/src/Plugin/DefaultPluginManagerTest.php
Contains \Drupal\Tests\service_container\Plugin\DefaultPluginManagerTest
PluginManagerBase.php in src/Plugin/PluginManagerBase.php
Contains \Drupal\service_container\Plugin\PluginManagerBase

File

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.