public function ViewsHandlerManager::getFallbackPluginId in Drupal 8
Same name and namespace in other branches
- 9 core/modules/views/src/Plugin/ViewsHandlerManager.php \Drupal\views\Plugin\ViewsHandlerManager::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
- core/
modules/ views/ src/ Plugin/ ViewsHandlerManager.php, line 132
Class
- ViewsHandlerManager
- Plugin type manager for all views handlers.
Namespace
Drupal\views\PluginCode
public function getFallbackPluginId($plugin_id, array $configuration = []) {
return 'broken';
}