You are here

public function WebformHandlerManager::getFallbackPluginId in Webform 8.5

Same name and namespace in other branches
  1. 6.x src/Plugin/WebformHandlerManager.php \Drupal\webform\Plugin\WebformHandlerManager::getFallbackPluginId()

Gets a fallback id for a missing plugin.

Parameters

string $plugin_id: The ID of the missing requested plugin.

array $configuration: An array of configuration relevant to the plugin instance.

Return value

string The id of an existing plugin to use when the plugin does not exist.

Overrides FallbackPluginManagerInterface::getFallbackPluginId

File

src/Plugin/WebformHandlerManager.php, line 90

Class

WebformHandlerManager
Manages webform handler plugins.

Namespace

Drupal\webform\Plugin

Code

public function getFallbackPluginId($plugin_id, array $configuration = []) {
  return 'broken';
}