You are here

public function AllowedHtmlManager::getFallbackPluginId in Markdown 8.2

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 InstallablePluginManager::getFallbackPluginId

File

src/PluginManager/AllowedHtmlManager.php, line 200

Class

AllowedHtmlManager
Markdown Allowed HTML Plugin Manager.

Namespace

Drupal\markdown\PluginManager

Code

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