protected function InstallablePluginBase::getConfigurationName in Markdown 8.2
Returns the configuration name for the plugin.
Return value
string The configuration name.
1 call to InstallablePluginBase::getConfigurationName()
- InstallablePluginBase::setConfiguration in src/
Plugin/ Markdown/ InstallablePluginBase.php - Sets the configuration for this plugin instance.
File
- src/
Plugin/ Markdown/ InstallablePluginBase.php, line 144
Class
- InstallablePluginBase
- Base class for installable plugins.
Namespace
Drupal\markdown\Plugin\MarkdownCode
protected function getConfigurationName() {
return sprintf('installable.plugin.%s_%s', $this
->getProvider(), $this
->getPluginId());
}