public function IdentityChannelManager::getFallbackPluginId in Courier 8
Same name and namespace in other branches
- 2.x src/Service/IdentityChannelManager.php \Drupal\courier\Service\IdentityChannelManager::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/
Service/ IdentityChannelManager.php, line 29
Class
- IdentityChannelManager
- Manages discovery and instantiation of CourierIdentity plugins.
Namespace
Drupal\courier\ServiceCode
public function getFallbackPluginId($plugin_id, array $configuration = []) {
return 'broken';
}